vue.config.js配置
devServer
: {
proxy
: {
'/api/v1': {
target
: 'http://106.53.217.166/api/v1',
secure
: false,
changeOrigin
: true,
ws
: true,
pathRewrite
: {
'^/api/v1': ''
}
},
}
},
“/api/v1” 就是项目的baseUrl
转载请注明原文地址:https://tech.qufami.com/read-9828.html