eden-web/pc/vue.config.js
2025-05-07 16:02:10 +08:00

24 lines
458 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.3:8080/api/api',
// target: 'http://192.168.137.45:8080',
changeOrigin: true,
pathRewrite: {
'^/api': '/api'
}
}
}
}
}