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

配置文件里的proxy

程序员文章站 2022-05-27 16:18:35
...
proxy: {
      '/mframework': {
        target: 'http://10.10.10.10:8000', //代理地址
        ws:true, //是否启用websockets
        changeOrigin: true, 
        //默认是false:请求头中host仍然是浏览器发送过来的host; 如果设置成true:发送请求头中host会设置成target
        debuger: 'log',
        pathRewrite: {
          '^/mframework': '',
        }, //重写url
      },
    },
相关标签: vue.js