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

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:
Cauê Faleiros
2026-02-05 09:46:27 -03:00
parent 3d568243ea
commit 0dba16d56c

View File

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