vue-cli里面的proxyTable要怎么代理https?

vue-cli里面的proxyTable要怎么代理https?看的网络上面都是http的,不知道该如何设置。如果直接设置https://**,就会报错,报的是未定义的错误,求助!

阅读 12.1k
2 个回答
proxyTable: {
      // 代理所有的以 /api 开头的请求到 https://xxxx.com
      '/api': {
        target: 'https://xxxx.com',
        changeOrigin: true,
        secure: false,
        headers: {
          Referer: 'https://xxxx.com'
        }

      }
    }
我个人开发配置完全没问题 你试试。
// 没报错
proxyTable: {
  '/local': {
    target: 'https://www.****.com',
    changeOrigin: true,
    pathRewrite: {
      '^/local': ''
    }
  },
  '/php/': {
    target: 'https://****.****.com/api/',
    changeOrigin: true,
    pathRewrite: {
      '^/php': ''
    }
  }
}
1 篇内容引用
推荐问题
宣传栏