Fix: Correct asset path in published login view and force track it
All checks were successful
Build and Deploy / build-and-deploy (push) Successful in 4m10s
All checks were successful
Build and Deploy / build-and-deploy (push) Successful in 4m10s
The published login view (resources/views/vendor/admin/sessions/login.blade.php) was referencing 'resources/images/logo.svg', which caused a mismatch with the Vite manifest (which has 'images/logo.svg'). Also force-added the file to git because 'resources/views/.gitignore' ignores everything.
This commit is contained in:
@@ -16,7 +16,7 @@
|
||||
@else
|
||||
<img
|
||||
class="w-max"
|
||||
src="{{ vite()->asset('resources/images/logo.svg') }}"
|
||||
src="{{ vite()->asset('images/logo.svg') }}"
|
||||
alt="{{ config('app.name') }}"
|
||||
/>
|
||||
@endif
|
||||
|
||||
Reference in New Issue
Block a user