]> git.localhorst.tv Git - alttp.git/blob - resources/views/app.blade.php
extract js vendor resources
[alttp.git] / resources / views / app.blade.php
1 <!DOCTYPE html>
2 <html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
3         <head>
4                 <meta charset="utf-8">
5                 <meta name="viewport" content="width=device-width, initial-scale=1">
6
7                 <title>{{ config('app.name', 'Laravel') }}</title>
8                 <link rel="icon" href="{{ URL::asset('favicon.ico') }}" type="image/x-icon">
9
10                 <script src="{{ mix('js/manifest.js') }}" defer></script>
11                 <script src="{{ mix('js/vendor.js') }}" defer></script>
12                 <script src="{{ mix('js/app.js') }}" defer></script>
13
14                 <link href="{{ mix('css/app.css') }}" rel="stylesheet">
15         </head>
16         <body>
17                 <div id="react-root" class="title m-b-md">
18                 </div>
19         </body>
20 </html>