#27048 Chat UI (/ui/chat) returns 404 - Next.js static export routing issue
## Problem
The Chat UI feature added on March 6, 2026 (PR #22937) is not accessible at `/ui/chat`. Accessing this endpoint returns `404 Not Found`.
## Investigation
- Chat UI code exists in GitHub repository: `ui/litellm-dashboard/src/app/chat/page.tsx` - Chat UI artifacts exist in Docker image: `chat.html`, `chat/` directory in `/app/litellm/proxy/_experimental/out/` - However, Next.js `__next._tree.txt` does not include the chat route - GitHub latest commit (934ecdca78daf7ec9514efd47df77bf7495c822d) also has this issue
## Root Cause
Next.js static export routing issue. The `__next._tree.txt` file does not include the chat route, even though the chat page source code exists.
## Expected Behavior
`/ui/chat` should serve the Chat UI page.
## Environment
- LiteLLM Version: 1.83.10 (latest main-stable) - Docker Image: docker.litellm.ai/berriai/litellm:main-stable - Next.js Config: `output: "export"`, `basePath: ""`