Support naddr/nevent/note slugs for unindexed posts, cache naddr lookups, render Nostr embeds in markdown, and add a consistency check for events mirrors. Co-authored-by: Cursor <cursoragent@cursor.com>
11 lines
271 B
TypeScript
11 lines
271 B
TypeScript
import { buildContactMarkdown } from "@/lib/llms";
|
|
|
|
export const dynamic = "force-dynamic";
|
|
|
|
export async function GET() {
|
|
const body = await buildContactMarkdown();
|
|
return new Response(body, {
|
|
headers: { "Content-Type": "text/markdown; charset=utf-8" },
|
|
});
|
|
}
|