eden-web/pc/vue.config.js
2025-04-17 09:53:08 +08:00

23 lines
407 B
JavaScript

module.exports = {
publicPath: '/',
outputDir: 'dist',
assetsDir: 'static',
productionSourceMap: false,
devServer: {
port: 8080,
open: true,
overlay: {
warnings: false,
errors: true
},
proxy: {
'/': {
target: 'http://192.168.137.214:8082/api',
changeOrigin: true,
pathRewrite: {
'^/api': '/api'
}
}
}
}
}