vue配置代理跨域
/vue.config.js
module.exports = {
devServer: {
proxy: {
//配置跨域
"/api": {
target: "http://127.0.0.1:7001",
ws: true,
changOrigin: true, //允许跨域
// pathRewrite: {
// "^/api": "/api", //这里理解成用'/api'代替target里面的地址,比如我要用'https://www.baidu.com/user/add',直接写'/api/user/add'即可
// },
},
},
},
};