[Vuejs]-Resources in dist not work properly in production

0👍

You could try to set the mode to static

  mode: "static",

Then type npm run build

It should now generate an folder called “dist”

You grab everything from the folder dist and upload it on your server

Leave a comment