From b3ab989aad4f98443ba2cd6e8b4aec104ee3b36f Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Tue, 9 May 2023 08:44:11 -0700 Subject: [PATCH] fix: add feed headers --- vercel.json | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/vercel.json b/vercel.json index 445f67f5..1b15abfe 100644 --- a/vercel.json +++ b/vercel.json @@ -2,6 +2,34 @@ "github": { "silent": true }, + "headers": [ + { + "source": "/feed.xml", + "headers": [ + { + "key": "Content-Type", + "value": "application/xml; charset=utf-8 # not application/rss+xml" + }, + { + "key": "x-content-type-options", + "value": "nosniff" + } + ] + }, + { + "source": "/links.xml", + "headers": [ + { + "key": "Content-Type", + "value": "application/xml; charset=utf-8 # not application/rss+xml" + }, + { + "key": "x-content-type-options", + "value": "nosniff" + } + ] + } + ], "rewrites": [ { "source": "/.well-known/webfinger",