// 配置代理 项目中自带(http-proxy-middleware)
const proxy = require('http-proxy-middleware')
module.exports = function(app){
app.use(
proxy('/api',{//代理前缀
target:"http://",//请求路径
changeOrigin:true,//控制服务器收到的请求头中Host的值
pathRewrite:{'^/api':''}//重写
})
)
}