vue-cli跨域问题解决

vue-cli跨域问题解决

axios里面的baseurl: 

https://sit.tohours.com/api

vue.config.js里面添加如下代码:

devServer: {
    proxy: {
      '/api': {
        target: 'http://ngrokzyj.free.idcfengye.com',
        changeOrigin: true,
        ws: true,
        pathRewrite: {
          '^/api': ''
        }
      }
    }
  }
 如图:
 
原文地址:https://www.cnblogs.com/sinceForever/p/12509323.html