ktx/docs-site/app/llms.txt/route.ts
2026-05-11 16:40:34 -07:00

11 lines
233 B
TypeScript

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",
},
});
}