fix: add noindex to mii and qr-code image types

This commit is contained in:
trafficlunar 2025-06-12 22:04:53 +01:00
parent a2fd114f7d
commit afd4e449a5

View file

@ -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",
},
});
}