From 25cab65724d764179ee674ef60af1b6080441004 Mon Sep 17 00:00:00 2001 From: fewensa <37804932+fewensa@users.noreply.github.com> Date: Tue, 24 Sep 2024 05:58:33 +0000 Subject: [PATCH] Create vercel.json (#5) --- vercel.json | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 vercel.json 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" }] +}