// vue的配置文件
module.exports = {
    devServer: {
        proxy: {
            '/zz': {
                ws: true,
                target: 'http://api.map.baidu.com/telematics/v3',
                changeOrigin: true,
                pathRewrite: {
                    '^/zz': '/'
                }
            },
            '/api': {
                ws: true,
                target: 'https://www.liulongbin.top:8888/api/private/v1',
                changeOrigin: true,
                pathRewrite: {
                    '^/api': '/'
                }
            },
        }
    }
}

注意:代理配置完成,要重新打开项目,不然代理不生效。重新启动。

Logo

前往低代码交流专区

更多推荐