ktx/docs-site/app/llms.txt/route.ts

12 lines
233 B
TypeScript
Raw Permalink Normal View History

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