Skip to content

Instantly share code, notes, and snippets.

@TheEskhaton
Created October 12, 2020 18:24
Show Gist options
  • Save TheEskhaton/b4d380b06e41e355c4e79768a55745e9 to your computer and use it in GitHub Desktop.
Save TheEskhaton/b4d380b06e41e355c4e79768a55745e9 to your computer and use it in GitHub Desktop.
import { ColorModeScript } from "@chakra-ui/core"
import Document, { Head, Html, Main, NextScript } from 'next/document'
class MyDocument extends Document {
render() {
return (
<Html>
<Head />
<body>
<ColorModeScript initialColorMode="light"></ColorModeScript>
<Main />
<NextScript />
</body>
</Html>
)
}
}
export default MyDocument
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment