From 05357f3d7c97159e15cf339c8e0b51f1d80c6e34 Mon Sep 17 00:00:00 2001 From: James Purser Date: Sun, 6 Nov 2022 16:01:18 +1100 Subject: [PATCH] Added GNU Header --- next.config.js | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/next.config.js b/next.config.js index 2afb30c..f4c983e 100755 --- a/next.config.js +++ b/next.config.js @@ -19,5 +19,18 @@ module.exports = { }, publicRuntimeConfig: { analytics_code: process.env.GTAG + }, + async headers() { + return [ + { + source: "/", + headers: [ + { + key: "X-Clacks-Overhead", + value: "GNU Richard James Purser, GNU Jean Franke, GNU Patrick Evans, GNU William David Evans" + } + ], + } + ] } -} \ No newline at end of file +}