import { buildLlmsTxt } from "@/lib/llm-docs"; export const dynamic = "force-static"; export function GET() { return new Response(buildLlmsTxt(), { headers: { "Content-Type": "text/plain; charset=utf-8", }, }); }