From 873e0766f31dd427f52f0d51477ec71173eed5fa Mon Sep 17 00:00:00 2001 From: Jan Tuomi Date: Wed, 11 Oct 2023 22:43:16 +0300 Subject: Rewrite in htmx + flask --- pages/_document.tsx | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 pages/_document.tsx (limited to 'pages/_document.tsx') diff --git a/pages/_document.tsx b/pages/_document.tsx deleted file mode 100644 index 8f33f41..0000000 --- a/pages/_document.tsx +++ /dev/null @@ -1,22 +0,0 @@ -import Document, { Html, Head, Main, NextScript, DocumentInitialProps, DocumentContext } from "next/document"; - -class MyDocument extends Document { - static async getInitialProps(ctx: DocumentContext): Promise { - const initialProps = await Document.getInitialProps(ctx); - return { ...initialProps }; - } - - render(): JSX.Element { - return ( - - - -
- - - - ); - } -} - -export default MyDocument; \ No newline at end of file -- cgit v1.3