vue.config.js 添加以下代码
module.exports = {
devServer: {
open: true,
host: 'localhost',
port: 8080,
https: false,
proxy: { //配置代理
'/api': {
target: 'https://xxx.com', // 要代理的地址
ws: true, // 支持websockets
changOrigin: true, //允许跨域
pathRewrite: { // 路径重写去除 '/api'
'^/api': ''
}
}
}
}
}