diff --git a/src/pages/_document.tsx b/src/pages/_document.tsx index 91deeeaf..d68891c5 100644 --- a/src/pages/_document.tsx +++ b/src/pages/_document.tsx @@ -1,8 +1,26 @@ -import Document from "next/document"; import { createGetInitialProps } from "@mantine/next"; +import Document, { Head, Html, Main, NextScript } from "next/document"; const getInitialProps = createGetInitialProps(); export default class _Document extends Document { static getInitialProps = getInitialProps; + + render() { + return ( + + + +
+ + + {/* Plausible analytics */} + + + ); + } }