shop_h5/vue.config.js

21 lines
609 B
JavaScript
Raw Permalink Normal View History

2025-12-11 15:38:52 +08:00
module.exports = {
devServer: {
open: true, // npm run serve后自动打开页面
host: 'localhost',
port: 8080, // 开发服务器运行端口号
overlay: {
warnings: false,
errors: true
},
proxy: { //配置代理
"/api": {
// target: 'https://shop.dev.chutang66.com/',
target: 'https://shop.chutang66.com/',
changeOrigin: true, //开启代理
pathRewrite: { // 重命名
"^/api": "api"
}
}
}
}
}