Fix asset links
This commit is contained in:
parent
f576a82803
commit
0d3640b67a
2 changed files with 3 additions and 3 deletions
|
@ -14,7 +14,7 @@ return [
|
|||
*/
|
||||
|
||||
'name' => env('APP_NAME', 'Heimdall'),
|
||||
'version' => '2.5.1',
|
||||
'version' => '2.5.2',
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
<meta name="theme-color" content="#ffffff">
|
||||
<meta name="mobile-web-app-capable" content="yes">
|
||||
<meta name="apple-mobile-web-app-capable" content="yes">
|
||||
<link rel="stylesheet" href="{{ mix('css/app.css') }}" type="text/css" />
|
||||
<link rel="stylesheet" href="{{ asset(mix('css/app.css')) }}" type="text/css" />
|
||||
<link rel="stylesheet" href="{{ asset('css/all.min.css?v='.config('app.version')) }}" type="text/css" />
|
||||
<script src="{{ asset('js/fontawesome.js') }}"></script>
|
||||
@if(config('app.url') !== 'http://localhost')
|
||||
|
@ -116,7 +116,7 @@
|
|||
</div>
|
||||
<script src="{{ asset('js/jquery-3.6.0.min.js') }}"></script>
|
||||
<script src="{{ asset('js/jquery-ui.min.js') }}"></script>
|
||||
<script src="{{ mix('js/app.js') }}"></script>
|
||||
<script src="{{ asset(mix('js/app.js')) }}"></script>
|
||||
@yield('scripts')
|
||||
|
||||
<script id="custom_js">
|
||||
|
|
Loading…
Reference in a new issue