[Vuejs]-Vue js gitlab pages deployment on sub directory

0👍

If your project is located in group such as mygroup.gitlab.io/myusername/myprojectname

You can add this code to vue.config.js file:

module.exports = {
    publicPath: '/myusername/myprojectname/'
}

If this is correct answer, please accept or comment 🙂
Thanks

Leave a comment