欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

vue之proxyTable跨域

程序员文章站 2022-03-28 12:31:13
...

config文件夹下的index.js中

module.exports = {
  dev: {				//开发环境
    assetsSubDirectory: 'static',
    assetsPublicPath: '/',
    //跨域设置
    proxyTable: {
      '/rest': {
        target: "https://www.xxxx.com/",		//要跨域的接口域名
        changeOrigin: true,  		//是否跨域
        pathRewrite: {				//地址重写
          '^/rest': ''
        }
      }
    },