monacopilot / src /pages /_document.tsx
matthoffner's picture
Duplicate from failfast/nextjs-hf-spaces
9c5a47e
raw
history blame
231 Bytes
import { Html, Head, Main, NextScript } from 'next/document'
export default function Document() {
return (
<Html lang="en">
<Head />
<body>
<Main />
<NextScript />
</body>
</Html>
)
}