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

Posted 胖鹅68

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue.config.js中配置proxy代理https相关的知识,希望对你有一定的参考价值。

一、参考

  1. https://www.cnblogs.com/roland-sky/p/12916645.html

二、vue.config.js 配置文件

devServer: 
  // 如果改动node_modules内的代码, 不会触发热重载, 则取消下面的注释
  // watchOptions: 
  //   ignored: []
  // ,
  proxy: 
    '^/api/': 
      target: 'http://localhost:8060',
      changeOrigin: true
    ,
    "/apis": 
      target: 'https://example.com',
      changeOrigin: true, 
      secure: false,
      headers:                   
        Referer: 'https://example.com'
      
    ,
  

配置说明:

  • secure 安全证书校验
  • Referer 表示请求的来源(必填)

以上是关于vue.config.js中配置proxy代理https的主要内容,如果未能解决你的问题,请参考以下文章

vue.config.js中proxy配置

Vue技术点整理-vue.config.js

vue.config.js配置代理处理跨域

vue.config.js中配置多个跨域代理

vue.config.js的proxy为啥不起作用

vue.config.js跨域配置,以及代理配置