Codex Assistant
2025-10-08 c8dffd157cd8b62023b26e62a0b92c152d959423
web/vite.config.ts
@@ -10,13 +10,14 @@
    }
  },
  server: {
    port: 5173,
    port: 3000,
    open: true,
    proxy: {
      '/api': {
        target: 'http://localhost:8080',
        changeOrigin: true,
        rewrite: (path) => path.replace(/^\/api/, '/api')
        // 不需要重写路径,因为后端的context-path就是/api
        // rewrite: (path) => path.replace(/^\/api/, '/api')
      }
    }
  },