Vue 本地开发跨域 发表于 2019-02-19 | 更新于: 2022-12-25 vue-cli31234567891011121314151617181920// vue.config.jsmodule.exports = { devServer: { proxy: { '/api': { target: 'http://localhost:3000', //对应自己的接口 changeOrigin: true, ws: true, pathRewrite: { '^/api': '' } } } }}// ajax// 请求 http://localhost:8080/api/XXXXXX // 实际请求 http://localhost:3000/XXXXXX