"The Mix manifest does not exist" (500 Server Error) after deployment laravel project to server. #989
raisrindo
started this conversation in
Show and tell
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
My web works normally using canvas in the local computer but after I put it on server, it gives me 500 Server Error (when I set APP_ENV=production) or "The Mix manifest does not exist"(when I set APP_DEBUG=true). And then I got the clue from https://stackoverflow.com/questions/45153738/the-mix-manifest-does-not-exist-when-it-does-exist
and add :
$this->app->bind('path.public', function() {
return base_path().'/../public_html';
});
inside boot() method at AppServiceProvider file (under the app/Providers).
It works for me, I hope this information can help. This package is Awsome
Beta Was this translation helpful? Give feedback.
All reactions