From 75ab882bdb711f8e424a07d8b381245215b9ab4d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcus=20Bl=C3=A4ttermann?= Date: Mon, 12 Dec 2022 17:33:10 +0100 Subject: [PATCH] Add `_document` to be able to customize `` and `` --- website/pages/_document.tsx | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 website/pages/_document.tsx diff --git a/website/pages/_document.tsx b/website/pages/_document.tsx new file mode 100644 index 000000000..688465248 --- /dev/null +++ b/website/pages/_document.tsx @@ -0,0 +1,13 @@ +import { Html, Head, Main, NextScript } from 'next/document' + +export default function Document() { + return ( + + + +
+ + + + ) +}