// vue.config.js const path = require('path'); module.exports = { devServer: { proxy: { // 统一代理配置 '/': { target: 'http://localhost:8080', changeOrigin: true, logLevel: 'debug' // 添加调试日志 } } } }