I finally got it!!

This commit is contained in:
2022-10-20 23:18:14 +02:00
parent 5a8df80c36
commit 4fe5f4a444
2 changed files with 13 additions and 4 deletions

13
pages/_document.tsx Normal file
View File

@ -0,0 +1,13 @@
import { Html, Head, Main, NextScript } from "next/document";
export default function Document() {
return (
<Html lang="en">
<Head />
<body>
<Main />
<NextScript />
</body>
</Html>
);
}