Fix urls on settings page (#10765)

Restore url helper for js assets
needed for subdirectory installs
This commit is contained in:
Tony Murray
2019-11-03 19:11:37 -06:00
committed by GitHub
parent 2042737ce5
commit 7bb5f22681

View File

@@ -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