vue多个代理配置
vue.config
devServer: { host: 'localhost', port: 8200, proxy: { '/api': { target: 'http://192.168.0.8:80', changeOrigin: true, // 如果接口跨域,需要进行这个参数配置 ws: true, pathRewrite: { '^/api': '/' } }, '/noAuthorization': { target: 'http://192.168.0.8:8202', changeOrigin: true, // 如果接口跨域,需要进行这个参数配置 ws: true, pathRewrite: { '^/noAuthorization': '/' } } } }