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

12 lines
253 B
TypeScript
Raw Permalink Normal View History

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