Vue-cli3配置代理轉發devServer.proxy

版本不同可能配置的參數也不同vue

$ npx vue -V
@vue/cli 4.2.3

修改 配置文件 vue.config.jsapi

devServer: {
    port: port,
    open: true,
   
    proxy: {
      "/api": {
        target: "https://www.baidu.cn", //跨域網址
        secure: true, // 若是是https接口,須要配置這個參數
        changeOrigin: true, //自動修改http header裏面的host
        pathRewrite: {
          "^/api": "", //路徑的替換規則
        }
      }
    }
  }
相關文章
相關標籤/搜索