案例: proxy: { '/api': { target: 'http://localhost' changeOrigin: true, cookiePathRewrite: { '*': 'http://localhost:8080' }, cookieDomainRewrite: { '*': 'localhost:8080' }, pathRewrite: { ['^']: '' } } 实现: proxy: { '/': { target: process.env.VUE_APP_API_BASE_URL, changeOrigin: true, cookieDomainRewrite: 'localhost' } }