[Vuejs]-Change root path of a VueJS project generated by cli

0👍

I know this is old but I followed the same tutorial and needed to create a vue.config.js that looks like below in order to have the project assets resolve correctly.

module.exports = {
    publicPath: '/your-project-name/'
}

Leave a comment