vue.config.js中配置proxy代理https

target 要使用 Proxy 包装的目标

secure 安全证书校验
Referer 表示请求的来源(必填)
    
 proxy: {
      "/api": {
        target: 'https://example.com',
        changeOrigin: true, 
        secure: false,
        headers: {                  
          Referer: 'https://example.com'
        }
      },
 }

 

posted @ 2020-05-19 14:13  微风L  阅读(10937)  评论(0编辑  收藏  举报