mirror of
https://github.com/snipe/snipe-it.git
synced 2024-12-24 21:24:13 -08:00
Fixed #8442 - wrong CSS url path on /setup
This commit is contained in:
parent
440ca686e4
commit
a3e738b283
|
@ -10,7 +10,7 @@
|
||||||
|
|
||||||
<link rel="shortcut icon" type="image/ico" href="{{ ($snipeSettings) && ($snipeSettings->favicon!='') ? Storage::disk('public')->url('').e($snipeSettings->favicon) : 'favicon.ico' }} ">
|
<link rel="shortcut icon" type="image/ico" href="{{ ($snipeSettings) && ($snipeSettings->favicon!='') ? Storage::disk('public')->url('').e($snipeSettings->favicon) : 'favicon.ico' }} ">
|
||||||
{{-- stylesheets --}}
|
{{-- stylesheets --}}
|
||||||
<link rel="stylesheet" href="{{ url('css/all.css') }}">
|
<link rel="stylesheet" href="{{ url(mix('css/dist/all.css')) }}">
|
||||||
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="{{ url('css/dist/all.css') }}">
|
<link rel="stylesheet" href="{{ url('css/dist/all.css') }}">
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
Snipe-IT Setup
|
Snipe-IT Setup
|
||||||
@show
|
@show
|
||||||
</title>
|
</title>
|
||||||
<link rel="stylesheet" href="{{ url('css/all.css') }}">
|
<link rel="stylesheet" href="{{ url(mix('css/dist/all.css')) }}">
|
||||||
|
|
||||||
|
|
||||||
<script nonce="{{ csrf_token() }}">
|
<script nonce="{{ csrf_token() }}">
|
||||||
|
|
Loading…
Reference in a new issue