Skip to content

Commit

Permalink
Improving asset loading
Browse files Browse the repository at this point in the history
  • Loading branch information
votemike committed Mar 10, 2018
1 parent 086e43e commit 3b156c0
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions src/Illuminate/Auth/Console/stubs/make/views/layouts/app.stub
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,13 @@

<title>{{ config('app.name', 'Laravel') }}</title>

<!-- Scripts -->
<script src="{{ asset('js/app.js') }}"></script>

<!-- Fonts -->
<link rel="dns-prefetch" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css?family=Raleway:300,400,600" rel="stylesheet" type="text/css">

<!-- Styles -->
<link href="{{ asset('css/app.css') }}" rel="stylesheet">
</head>
Expand Down Expand Up @@ -64,8 +71,5 @@
@yield('content')
</main>
</div>

<!-- Scripts -->
<script src="{{ asset('js/app.js') }}"></script>
</body>
</html>

0 comments on commit 3b156c0

Please sign in to comment.