I'm facing problems with an app deploy in a shared hosting. For security reasons the laravel app is located on
/home/myname/apps/laravel-app
while all the css and js are located in
/home/myname/public_html/laravel-app/
but I'm getting The Mix manifest does not exist.. What I should do to find the mix manifest? At the moment I've tried to add this code on the AppServiceProvider without luck
@snapey Actually I build the assets locally and after I load them to the hosting.
I think the problem is because the public folder is under public_html folder while all the app is outside so this change the path where to find the manifest
@ktsubouchi I this case the app is deploy in a shared hosting where there is not possible to run npm so in order to get the app working I have to build my assets on local and upload them to the hosting.
Word to mention in local env all the app is out of the box in one folder while in production on this shared hosting just the public app is placed on the public_html while the other files are outside of public_html.