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

11 lines
253 B
TypeScript

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