having issues with laravel 9 breeze , i have hosted it successfully everything working fine ... but breeze login and register wont work on production

Viewed 17

this is my error on production level Vite manifest not found at: /home/codarhqc/codar/public/build/manifest.json (View: /home/codarhqc/codar/resources/views/layouts/guest.blade.php) (View: /home/codarhqc/codar/resources/views/layouts/guest.blade.php)

1 Answers

You can delete the following file bootstrap/cache/config.php or better if you can make a route in your web.php file with a function that runs: php artisan optimize:clear. This should remove the problem.

Related