mirror of
https://github.com/Kaelio/ktx.git
synced 2026-06-07 07:55:13 +02:00
11 lines
233 B
TypeScript
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",
|
|
},
|
|
});
|
|
}
|