[Vuejs]-`dist/` Folder Empty on Vue

0👍

You will need a web server to see the build, you cant just open dist/index.html in a browser.

To view your build you can run npx serve dist from the root of your project.

Hope that helps.

Leave a comment