From 9fe62086776449919fa34194de7dd088755743d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julian=20T=C3=B6lle?= Date: Sat, 18 Feb 2023 18:36:18 +0100 Subject: [PATCH] feat: configure vercel options --- vercel.json | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 vercel.json diff --git a/vercel.json b/vercel.json new file mode 100644 index 0000000..093d980 --- /dev/null +++ b/vercel.json @@ -0,0 +1,19 @@ +{ + "build": { + "env": { + "HUGO_VERSION": "0.110.0" + } + }, + "buildCommand": {}, + "headers": [ + { + "source": "/(.*)", + "headers": [ + { + "key": "Permissions-Policy", + "value": "interest-cohort=()" + } + ] + } + ] +}