vue设置本地代理 发表于 2019-12-26 更新于 2023-08-04 分类于 vue 阅读次数: 1234567891011module.exports = { proxy: { "/api": { target: "https://www.aaa.com/", // 接口域名 changeOrigin: true, //是否跨域 pathRewrite: { "^/api": "/" } } }};