[Vuejs]-I got the error failed to load module script on prod server in VueJs

0👍

First you have to build your vuejs app

    npm run build

When Vue builds the app, by default it assumes that index.html will be in the root, as in http://my-server.com/index.html, therefore the base URL is /. so please be sure that index.html is in the public folder which your server points to and update me with your case i am here to help!

Leave a comment