[Vuejs]-Multi page Vue app combined with Flask and Nginx – can't run in sub path

1👍

If anyone is interested, the issue was the vue.config.js file and that Nginx couldn’t find the files in the dist folder linked to app1. Adding this information got it working.

module.exports = {
        publicPath: './',
        assetsDir: './',
        outputDir: './dist/app1/',
};

Leave a comment