I've built a vue.js app using vue-cli 3.0 and everything is great.
Now I'm wanting to deploy it into production, but I need to deploy it into a sub folder, not the root, i.e.:
https://example.com/myvueapp/*
I've built the production distribution with npm run build but the problem is that the links to the .js files etc are all /js/vendor.9e469b3e.js. How would I make this /myvueapp/js/vendor.9e469b3e.js?
I've found other answers that say "change the webpack config file". But I don't have a webpack config file anywhere I can see?
