2022-05-16 14:25:22 +02:00
|
|
|
import Document, { Head, Html, Main, NextScript } from 'next/document'
|
2022-03-24 01:52:23 +01:00
|
|
|
|
2022-03-24 11:38:07 +01:00
|
|
|
class MyDocument extends Document {
|
|
|
|
render(): JSX.Element {
|
|
|
|
return (
|
|
|
|
<Html lang='en'>
|
2022-05-16 14:25:22 +02:00
|
|
|
<Head />
|
2022-03-24 11:38:07 +01:00
|
|
|
<body>
|
|
|
|
<Main />
|
|
|
|
<NextScript />
|
|
|
|
</body>
|
|
|
|
</Html>
|
|
|
|
)
|
|
|
|
}
|
2022-03-24 01:52:23 +01:00
|
|
|
}
|
|
|
|
|
2022-03-24 11:38:07 +01:00
|
|
|
export default MyDocument
|