module.exports = {
  devServer: {
    proxy: {
      '/api': {
        target: 'http://localhost:7860', // 后端 API 地址
        changeOrigin: true,
        pathRewrite: { '^/api': '' },
      },
    },
  },
  publicPath: '/'
};