proxy: {
// 用‘/api’开头,代理所有请求到目标服务器
'/api': {
target: 'http://localhost:9000', // 后台服务地址及端口
ws: true, // 是否启用websockets
changeOrigin: true, // 是否启用跨域
pathRewrite: { //
'^/api': ''
}
}
}
最后请求地址为 http://localhost:9000/api/xxx