Centralize site metadata and social URLs for JSON-LD, expose llmstxt.org content and per-page .md routes for LLM crawlers, and refactor blog/FAQ/events pages with shared components. Co-authored-by: Cursor <cursoragent@cursor.com>
11 lines
256 B
TypeScript
11 lines
256 B
TypeScript
import { buildBlogMarkdown } from "@/lib/llms";
|
|
|
|
export const revalidate = 300;
|
|
|
|
export async function GET() {
|
|
const body = await buildBlogMarkdown();
|
|
return new Response(body, {
|
|
headers: { "Content-Type": "text/markdown; charset=utf-8" },
|
|
});
|
|
}
|