docs: Add content negotiation to apps/wiki

This commit is contained in:
Dries Augustyns
2026-04-20 17:51:02 +02:00
parent 37ed1e49b7
commit 545d733794
2 changed files with 61 additions and 1 deletions
+2 -1
View File
@@ -11,7 +11,8 @@ export async function GET(_req: Request, props: {params: Promise<{slug?: string[
return new Response(await getLLMText(page), {
headers: {
'Content-Type': 'text/markdown',
'Content-Type': 'text/markdown; charset=utf-8',
'Vary': 'Accept',
},
});
}