美文网首页
dev环境早期webpack配置跨域代理https接口地址及re

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

作者: coderfl | 来源:发表于2022-09-07 10:18 被阅读0次
    - 适用于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'
            }
          }
       }
    }
    

    相关文章

      网友评论

          本文标题:dev环境早期webpack配置跨域代理https接口地址及re

          本文链接:https://www.haomeiwen.com/subject/kccgnrtx.html