webpack 跨域设置
2018-05-03 本文已影响46人
赛亚人之神
proxyTable: {
'/api': {
target: "http://localhost:8088", // 接口的域名
// secure: false, // 如果是https接口,需要配置这个参数
changeOrigin: true, // 如果接口跨域,需要进行这个参数配置
pathRewrite: {
'^/api': ''
}
}
},