From afd4e449a5478a757a198ddfe75961000a639b7d Mon Sep 17 00:00:00 2001 From: trafficlunar Date: Thu, 12 Jun 2025 22:04:53 +0100 Subject: [PATCH] fix: add noindex to mii and qr-code image types --- src/app/mii/[id]/image/route.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/app/mii/[id]/image/route.ts b/src/app/mii/[id]/image/route.ts index 6e20465..c8a744e 100644 --- a/src/app/mii/[id]/image/route.ts +++ b/src/app/mii/[id]/image/route.ts @@ -103,6 +103,7 @@ export async function GET(request: NextRequest, { params }: { params: Promise<{ return new NextResponse(buffer, { headers: { "Content-Type": "image/webp", + "X-Robots-Tag": "noindex, nofollow", }, }); }