1. 程式人生 > >vue cli3.0中使用proxy進行代理轉發

vue cli3.0中使用proxy進行代理轉發

解決方法:

在vue專案的根目錄下新增 vue.config.js檔案,檔案中需要按照下面寫法來寫

module.exports = {
  lintOnSave: true,

  devServer: {
    proxy: {
      // proxy all requests starting with /api to jsonplaceholder
      '/api': {
        target: 'http://localhost:8080',   //代理介面
        changeOrigin: true,
        pathRewrite: {
          '^/api': '/mock'    //代理的路徑
        }
      }
    }
  }
}