Files
starRiverProperty/frontend-source/projects/cwos-portal/vue.config.js
T
反编译工作区 7a9dcc43dc feat: scaffold cwos-portal Vue 2 skeleton (config)
Includes package.json, vue.config.js, babel.config.js, and public/index.html


Former-commit-id: 670bbb3eadd4c3900723717b0cdb64a5faa790e6
2026-04-29 12:54:50 +08:00

16 lines
266 B
JavaScript

module.exports = {
publicPath: './',
outputDir: 'dist',
assetsDir: 'static',
productionSourceMap: false,
devServer: {
port: 8080,
proxy: {
'/api': {
target: 'http://localhost:8090',
changeOrigin: true,
},
},
},
};