Create your Gitee Account
Explore and code with more than 12 million developers,Free private repositories !:)
Sign up
文件
This repository doesn't specify license. Please pay attention to the specific project description and its upstream code dependency when using it.
Clone or Download
vue.config.js 739 Bytes
Copy Edit Raw Blame History
用户名 authored 2022-09-24 16:53 . 924
const {defineConfig} = require('@vue/cli-service')
module.exports = defineConfig({
transpileDependencies: true,
lintOnSave: false,
devServer: {
port: 8086,//改变端口
proxy: {
"/supply": {
target: "http://127.0.0.1:8003",
pathRewrite: {
"^/supply": "/"
}
},
"/bd": {
target: "http://127.0.0.1:8002",
pathRewrite: {
"^/bd": "/"
}
},
"/qq": {
target: "http://127.0.0.1:8001",
pathRewrite: {
"^/qq": "/"
}
},
},
},
})
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化