summaryrefslogtreecommitdiff
path: root/pages/_document.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'pages/_document.tsx')
-rw-r--r--pages/_document.tsx14
1 files changed, 14 insertions, 0 deletions
diff --git a/pages/_document.tsx b/pages/_document.tsx
new file mode 100644
index 00000000..e2f593fb
--- /dev/null
+++ b/pages/_document.tsx
@@ -0,0 +1,14 @@
+import { Html, Head, Main, NextScript } from 'next/document'
+
+export default function Document() {
+ return (
+ <Html lang="en">
+ <Head />
+ <body>
+ <Main />
+ <NextScript />
+ </body>
+ </Html>
+ )
+}
+