使用同源策略将后端api地址映射到本地//vue.config.jsmodule.exports={devServer:{proxy:{'/v1':{target:'http://192.168.0.90:3000',//请求接口API地址ws:true,changeOrigin:true,pathRewrite:{'^/v1':'/v1',//API路径前缀},},},},}配置参考|VueCLI官方文档cli.vuejs.org

使用同源策略将后端api地址映射到本地//vue.config.jsmodule.exports={devServer:{proxy:{'/v1':{target:'http://192.168.0.90:3000',//请求接口API地址ws:true,changeOrigin:true,pathRewrite:{'^/v1':'/v1',//API路径前缀},},},},}配置参考|VueCLI官方文档cli.vuejs.org