Merge pull request #61 from nusserstudios/dev

Added vercel.json and .vercel to .gitignore.
This commit is contained in:
Nusser Studios 2022-11-03 10:16:04 -05:00 committed by GitHub
commit e2cfc0b266
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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"
}
]
}
]
}