module.exports = {
devServer: {
proxy: {
"/api":{ //项目中的接口
target:"http://xxx.com", // 对应的反向代理的网址
pathRewrite:{
"^/api":"/api" //对应的接口
}
}
}
}