mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
Fix urls on settings page (#10765)
Restore url helper for js assets needed for subdirectory installs
This commit is contained in:
@@ -16,13 +16,13 @@
|
||||
@endsection
|
||||
|
||||
@push('styles')
|
||||
<link href="{{ mix('/css/app.css') }}" rel="stylesheet">
|
||||
<link href="{{ asset(mix('/css/app.css')) }}" rel="stylesheet">
|
||||
@endpush
|
||||
|
||||
@push('scripts')
|
||||
@routes
|
||||
<script src="{{ mix('/js/manifest.js') }}"></script>
|
||||
<script src="{{ mix('/js/vendor.js') }}"></script>
|
||||
<script src="{{ mix('/js/app.js') }}"></script>
|
||||
<script src="{{ asset(mix('/js/manifest.js')) }}"></script>
|
||||
<script src="{{ asset(mix('/js/vendor.js')) }}"></script>
|
||||
<script src="{{ asset(mix('/js/app.js')) }}"></script>
|
||||
@endpush
|
||||
|
||||
|
Reference in New Issue
Block a user