web-client/next.config.ts
Markov 1d998dca55 feat: Next.js frontend — kanban board, sidebar, dark theme
- Kanban with drag-and-drop (5 columns)
- Project sidebar navigation
- API client (projects, tasks, agents, labels)
- Tailwind CSS dark theme
- Docker support, SSR with internal API URL
- Port 3100 (3000 occupied by Gitea)
2026-02-15 18:52:49 +01:00

8 lines
129 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
output: "standalone",
};
export default nextConfig;