// vue.config.js const path = require('path'); module.exports = { devServer: { proxy: { // 统一代理配置 '/': { target: 'http://localhost:8080', changeOrigin: true, pathRewrite: { '^/api': '', // 移除多余的/api前缀 '^/': '' } } } } }