25 lines
574 B
JavaScript
Vendored
25 lines
574 B
JavaScript
Vendored
module.exports = {
|
|
lintOnSave: false,
|
|
publicPath: "./", // 配置打包之后的相对路径
|
|
devServer: {
|
|
open: false, // 设置浏览器自动打开项目
|
|
port: 8080, // 开发服务器运行端口号
|
|
overlay: {
|
|
warnings: false,
|
|
errors: true,
|
|
},
|
|
proxy: {
|
|
// 配置代理
|
|
"/api": {
|
|
// target: "http://172.23.134.136:81",
|
|
target: "http://erp.chutang66.com",
|
|
changeOrigin: true, // 开启代理
|
|
pathRewrite: {
|
|
// 重命名
|
|
"^/api": "api",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
};
|