[Vuejs]-Laravel + Vue js Deploying on Shared hosting

0👍

you can’t run npm commands in sharing hosting .

you can run npm run production in local and share mixed file on sharing hosting

0👍

Usually shared hosting does not provide enough shell commands. So you would need to run npm run production on your local computer.

As a reminder, it is not recommedable to host Laravel website on a shared host. You may need to do extra work to make your Laravel website work such as changing document root of your laravel project.

Leave a comment