From 09d1d399447d087347c743c955b75af9748ec1eb Mon Sep 17 00:00:00 2001 From: Julian Pawlowski Date: Sun, 15 Sep 2019 00:12:22 +0200 Subject: [PATCH] fix(netlify): add headers for Web App Manifest and RSS feed (#40) --- netlify.toml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/netlify.toml b/netlify.toml index 3d0a80d..2dba153 100644 --- a/netlify.toml +++ b/netlify.toml @@ -14,3 +14,13 @@ [context.branch-deploy] command = "hugo --gc --minify -b $DEPLOY_PRIME_URL" + +[[headers]] + for = "*.webmanifest" + [headers.values] + Content-Type = "application/manifest+json; charset=UTF-8" + +[[headers]] + for = "index.xml" + [headers.values] + Content-Type = "application/rss+xml"