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

vuecli3 配置多个代理

程序员文章站 2022-05-17 21:03:30
...
module.exports = {
devServer: {
  proxy: {
    '/api1': {
      target: 'api1_url',
      ws: true,
      /* 允许跨域 */
      changeOrigin: true,
      pathRewrite: {
        '^/api1': ''
      }
    },
    '/api2': {
      target: 'api2_url',
      ws: true,
      /* 允许跨域 */
      changeOrigin: true,
      pathRewrite: {
        '^/api2': ''
      }
    }
  }
}
}

 

相关标签: 跨域 vuecli3