vue 前端服务器代理,proxyTable简要叙述

文章

    proxyTable: {
      '/api': {
        target: 'http://my.xxxx.com',
        ws: true,
        changeOrigin: true
      },
      '/v1': {
        target: 'http://my.xxxx.com',
        ws: true,
        changeOrigin: true
      }
    },

猜你喜欢

转载自blog.csdn.net/qq_26642611/article/details/109765277