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