From f46da9a619faef5495a2df6ca893103de1530eb3 Mon Sep 17 00:00:00 2001 From: Ben Ramey Date: Sat, 27 Aug 2022 16:02:34 -0500 Subject: [PATCH] Add _document.js --- web/pages/_document.js | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 web/pages/_document.js diff --git a/web/pages/_document.js b/web/pages/_document.js new file mode 100644 index 0000000..5cfc2f6 --- /dev/null +++ b/web/pages/_document.js @@ -0,0 +1,13 @@ +import { Html, Head, Main, NextScript } from "next/document"; + +export default function Document() { + return ( + + + +
+ + + + ); +}