- 适用于webpack3.6.0以下
webpack中设置代理
// ./config/index.js
module.exports = {
dev: {
proxyTable: { //跨域代理
'api':{
target:'https://c.y.qq.com', // 需要代理的地址
secure: false, // 如果是https接口,需要配置这个参数,
changeOrigin: true, // 是否跨域
pathRewrite:{ '^/api': '' }
},
'/pc': { // 代理url关键字
target: 'https://u.y.qq.com', // 需要代理的地址
secure: false, // 如果是https接口,需要配置这个参数
changeOrigin: true, // 是否跨域
pathRewrite: { '^/pc': '' }, // 突破host和origin的限制
headers: {
referer: 'https://y.qq.com/',
origin: 'https://y.qq.com'
}
}
}
}
网友评论