Skip to content

Commit

Permalink
feat: add security headers (#2)
Browse files Browse the repository at this point in the history
  • Loading branch information
WoeOm authored Sep 27, 2022
1 parent 6e37a82 commit 13f4b2e
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions vercel.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"headers": [
{
"source": "/(.*)",
"headers": [
{
"key": "X-Content-Type-Options",
"value": "nosniff"
},
{
"key": "Referrer-Policy",
"value": "origin-when-cross-origin"
},
{
"key": "X-Frame-Options",
"value": "SAMEORIGIN"
},
{
"key": "Strict-Transport-Security",
"value": "max-age=2592000"
}
]
}
]
}

0 comments on commit 13f4b2e

Please sign in to comment.