dev环境早期webpack配置跨域代理https接口地址及re

2022-09-07  本文已影响0人  coderfl
- 适用于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'
        }
      }
   }
}
上一篇下一篇

猜你喜欢

热点阅读