mirror of
https://github.com/pheralb/svgl.git
synced 2024-11-10 14:46:54 +08:00
19 lines
453 B
JavaScript
19 lines
453 B
JavaScript
|
import { ColorModeScript } from "@chakra-ui/react";
|
||
|
import NextDocument, { Html, Head, Main, NextScript } from "next/document";
|
||
|
import theme from "styles/theme";
|
||
|
|
||
|
export default class Document extends NextDocument {
|
||
|
render() {
|
||
|
return (
|
||
|
<Html>
|
||
|
<Head />
|
||
|
<body>
|
||
|
<ColorModeScript initialColorMode={theme.config.initialColorMode} />
|
||
|
<Main />
|
||
|
<NextScript />
|
||
|
</body>
|
||
|
</Html>
|
||
|
);
|
||
|
}
|
||
|
}
|