diff --git a/pages/_document.tsx b/pages/_document.tsx new file mode 100644 index 0000000..df545ff --- /dev/null +++ b/pages/_document.tsx @@ -0,0 +1,40 @@ +import Document, { DocumentContext, Html, Head, Main, NextScript } from 'next/document' + +class MyDocument extends Document { + static async getInitialProps(ctx: DocumentContext) { + const initialProps = await Document.getInitialProps(ctx) + + return initialProps + } + render() { + return ( + +
+ + + + + + +