Home > Enterprise >  How to fix Vite manifest not found at: /app/public/build/manifest.json?
How to fix Vite manifest not found at: /app/public/build/manifest.json?

Time:07-15

It works locally just fine, but as I deploy it to a host, this popped up, not sure what to look or what to do.

enter image description here

Any suggestions? thanks

CodePudding user response:

I would suggest running npm install && npm run dev as this seems like a default laravel app.

This would generate the correct files for local development.

If you want to run this in production you should run npm run prod somewhere in your build pipeline.

  • Related