This commit is contained in:
parent
48ce4a9fa9
commit
89cb2d130d
|
|
@ -1,12 +1,15 @@
|
|||
// _document.tsx
|
||||
|
||||
import { Html, Head, Main, NextScript } from 'next/document'
|
||||
import { Inter } from 'next/font/google'
|
||||
|
||||
const inter = Inter({ subsets: ['latin'] })
|
||||
|
||||
export default function Document() {
|
||||
return (
|
||||
<Html lang="en">
|
||||
<Html lang="en" suppressHydrationWarning>
|
||||
<Head />
|
||||
<body>
|
||||
<body className={inter.className}>
|
||||
<Main />
|
||||
<NextScript />
|
||||
</body>
|
||||
|
|
|
|||
Loading…
Reference in New Issue