Added vercel.json and .vercel to .gitignore.

This commit is contained in:
Jeremy Nusser 2022-11-03 10:10:05 -05:00
parent 96ca1f0cb9
commit bd1c50a300
2 changed files with 35 additions and 1 deletions

2
.gitignore vendored
View File

@ -1,2 +1,2 @@
node_modules/
vercel.json
.vercel

34
vercel.json Normal file
View File

@ -0,0 +1,34 @@
{
"build": {
"env": {
"HUGO_VERSION": "0.105.0"
}
},
"headers": [
{
"source": "/(.*)",
"headers": [
{
"key": "Strict-Transport-Security",
"value": "max-age=31536000; includeSubDomains; preload"
},
{
"key": "X-Frame-Options",
"value": "SAMEORIGIN"
},
{
"key": "Referrer-Policy",
"value": "strict-origin"
},
{
"key": "X-Content-Type-Options",
"value": "nosniff"
},
{
"key": "X-Powered-By",
"value": "Hugo"
}
]
}
]
}