2025-06-18 17:02:49 +08:00

16 lines
386 B
JavaScript

// vue.config.js
module.exports = {
devServer: {
proxy: {
'/api/v1': {
target: 'http://10.10.1.6:8040',
changeOrigin: true,
pathRewrite: {
'^/api/v1': '/api/v1'
}
}
}
},
lintOnSave: false, // 关闭保存时 ESLint 检查(提高编译速度)
}