module.exports = { devServer: { proxy: { '/api': { target: 'http://127.0.0.1:8000', changeOrigin: true, ws: false, secure: false, // 保留 /api 前缀并转发到后端 FastAPI(后端已以 /api 为前缀) pathRewrite: { '^/api': '/api' }, }, }, }, }