fix: adds content type options header (#2824)

Co-authored-by: Matti Nannt <mail@matthiasnannt.com>
This commit is contained in:
Anshuman Pandey
2024-07-09 13:58:10 +05:30
committed by GitHub
parent 54accbbeff
commit 12a6da6558

View File

@@ -148,6 +148,15 @@ const nextConfig = {
},
],
},
{
source: "/(.*)",
headers: [
{
key: "X-Content-Type-Options",
value: "nosniff",
},
],
},
];
},
env: {