/sockjs-node/info 无限报错

解决方案

原因是相关代理端不支持 ws,因此需要在代理处关闭 ws,即 ws: false,如下:

vue.config.js

const ds_proxy = {
  '/': {
    ws: false,
    target: 'https://dev.test.gitinn.com/',
    changeOrigin: true,
  },
}

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-04-18
  • 2022-12-23
  • 2021-08-22
  • 2022-12-23
猜你喜欢
  • 2022-01-27
  • 2021-08-19
  • 2022-12-23
  • 2021-11-12
  • 2022-12-23
  • 2021-05-29
  • 2021-09-28
相关资源
相似解决方案