123
This commit is contained in:
16
pages/_document.tsx
Normal file
16
pages/_document.tsx
Normal file
@ -0,0 +1,16 @@
|
||||
import { Head, Html, Main, NextScript } from 'next/document';
|
||||
import { ColorSchemeScript, mantineHtmlProps } from '@mantine/core';
|
||||
|
||||
export default function Document() {
|
||||
return (
|
||||
<Html lang="en" {...mantineHtmlProps}>
|
||||
<Head>
|
||||
<ColorSchemeScript />
|
||||
</Head>
|
||||
<body>
|
||||
<Main />
|
||||
<NextScript />
|
||||
</body>
|
||||
</Html>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user