[Vuejs]-Laravel + VUE, works on locally but not in Server

0👍

Did you run composer install and npm install ?
if you have ssh run the following command before deploying your code –> npm run dev. However, when you deploy to the live server with real users, run this command –> npm run production.
if you work in shared hosting and don’t have ssh , the solution is almost always "do it locally, upload it when done".

Leave a comment