其他分享
首页 > 其他分享> > 3-vue-cli中配置跨域

3-vue-cli中配置跨域

作者:互联网

将config下面的index.js中的proxyTable:{}内替换下面即可

 proxyTable: {
      '/': {
        target: 'http://localhost:8083', //自行更改
        changeOrigin: true,
        pathRewrite: {
          '^/': ''
        }
      }
    }

更改配置文件就要重新启动项目才能生效。

标签:下面,vue,cli,proxyTable,更改,index,配置文件,跨域
来源: https://www.cnblogs.com/gfbzs/p/12336948.html