fix(storage): add X-Content-Type-Options: nosniff to evidence serve route

This commit is contained in:
2026-07-23 22:16:47 +08:00
parent e5f74c367d
commit 186c732ac0
+1
View File
@@ -80,6 +80,7 @@ export async function GET(
'Content-Length': String(stat.size), 'Content-Length': String(stat.size),
'Cache-Control': 'private, max-age=3600', 'Cache-Control': 'private, max-age=3600',
'Content-Disposition': 'inline', 'Content-Disposition': 'inline',
'X-Content-Type-Options': 'nosniff',
}, },
}) })
} }