This commit is contained in:
hailin 2025-05-21 14:40:04 +08:00
parent 48ce4a9fa9
commit 89cb2d130d
1 changed files with 5 additions and 2 deletions

View File

@ -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>