| 1 | import { buildLlmsTxt } from "@/lib/llms-txt"; |
| 2 | |
| 3 | export const dynamic = "force-static"; |
| 4 | |
| 5 | export function GET() { |
| 6 | return new Response(buildLlmsTxt(), { |
| 7 | headers: { |
| 8 | "content-type": "text/plain; charset=utf-8", |
| 9 | "cache-control": "public, max-age=3600", |
| 10 | }, |
| 11 | }); |
| 12 | } |
| 13 |