vue多个代理配置vue.config

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': '/'
                }
            }
        }
    }

 

posted @ 2020-11-26 19:17  土豆哥  阅读(5236)  评论(0编辑  收藏  举报