diff --git a/vercel.json b/vercel.json new file mode 100644 index 0000000..9c9ec01 --- /dev/null +++ b/vercel.json @@ -0,0 +1,26 @@ +{ + "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" + } + ] + } + ], + "rewrites": [{ "source": "/(.*)", "destination": "/index.html" }] +}