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

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM