mirror of
https://gitee.com/hzchunfen/erp.git
synced 2025-12-01 06:30:49 +00:00
23 lines
717 B
JavaScript
Vendored
23 lines
717 B
JavaScript
Vendored
module.exports = {
|
|
lintOnSave: false,
|
|
publicPath: "./", // 配置打包之后的相对路径
|
|
devServer: {
|
|
open: true, // 设置浏览器自动打开项目
|
|
port: 8080, // 开发服务器运行端口号
|
|
proxy: {
|
|
// 配置代理
|
|
"/api": {
|
|
// target: "http://erp.local",
|
|
// target: "http://erp.chutang66.com",
|
|
target: "http://world.dev.chutang66.com/",
|
|
// target: "http://192.168.0.52:81",
|
|
changeOrigin: true, // 开启代理
|
|
pathRewrite: {
|
|
// 重命名
|
|
"^/api": "api",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
};
|