eden-web/pc/vue.config.js

23 lines
430 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',
// changeOrigin: true,
// pathRewrite: {
// '^/api': '/api'
// }
// }
// }
}
}