From e0669979e2b98d3d0d698327d33846093664382b Mon Sep 17 00:00:00 2001 From: Elias Schneider Date: Thu, 28 Apr 2022 08:19:55 +0200 Subject: [PATCH] added plausible --- src/pages/_document.tsx | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) 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 */} + + + ); + } }