After the project build I would like to see static files in / static / dist /, for this I use baseUrl: "/ static / dist / ', in that case going to the main page instead of address' localhost / 'I get' localhost / static / dist / ', and all the paths are built accordingly for this. my vue.config.js file
module.exports = { baseUrl: '/static/dist/', outputDir: '../api/static/dist/', } Tried to do build with config file config / index.js
build: { assetsPublicPath: '/', assetsSubDirectory: 'static', }, But when building a view, I do not see this config file. How can I configure relative paths for statics while using routing relative to '/' and not what is written in baseUrl?
outputDirandassetsDirinstead ofbaseUrl- diraria