config => index.js 的文件
proxyTable: {
'/api': { //这个api设置之后,请求的时候前边都要加上,请求时会自动忽略
target: 'https://xxx.xxx.com', // 对应后台接口
ws: true, //代理 websockets
secure: true, //代理 https
changeOrigin: true, //是否跨域
pathRewrite: {
'^/api': ''
}
}
这个跨域我是参考了 https://www.jianshu.com/p/5ef2b17f9b25 这个兄弟的项目配置,
可能我脑子最近要凉凉,改了半天才发现 得重新 npm run dev