module.exports = { devServer: { proxy: { '/api': { target: 'http://192.168.8.101:1080', // 替换为你的本地服务IP和端口 changeOrigin: true, pathRewrite: { '^/api': '' }, secure: false } } } }