Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame contribute delete
438 Bytes
import NextDocument, {
DocumentContext,
Head,
Html,
Main,
NextScript,
} from "next/document"
export default class Document extends NextDocument {
static getInitialProps(ctx: DocumentContext) {
return NextDocument.getInitialProps(ctx)
}
render() {
return (
<Html suppressHydrationWarning>
<Head />
<body>
<Main />
<NextScript />
</body>
</Html>
)
}
}