feat(pages): add _document.tsx
This commit is contained in:
parent
ee38e8b1ac
commit
3231c61c12
15
pages/_document.tsx
Normal file
15
pages/_document.tsx
Normal file
@ -0,0 +1,15 @@
|
||||
import { Html, Main, Head, NextScript } from 'next/document'
|
||||
|
||||
const NextDocument: React.FC = (): JSX.Element => {
|
||||
return (
|
||||
<Html>
|
||||
<Head />
|
||||
<body>
|
||||
<Main />
|
||||
<NextScript />
|
||||
</body>
|
||||
</Html>
|
||||
)
|
||||
}
|
||||
|
||||
export default NextDocument
|
Loading…
Reference in New Issue
Block a user