14 lines
300 B
TypeScript
14 lines
300 B
TypeScript
import { Head, Html, Main, NextScript } from 'next/document';
|
|
|
|
export default function Document() {
|
|
return (
|
|
<Html>
|
|
<Head />
|
|
<body className="cursor-default select-none overflow-hidden font-sans antialiased">
|
|
<Main />
|
|
<NextScript />
|
|
</body>
|
|
</Html>
|
|
);
|
|
}
|