alas/web/pages/_document.js

15 lines
350 B
JavaScript
Raw Normal View History

2022-07-03 15:29:11 +00:00
import NextDocument, {Html, Head, Main, NextScript} from 'next/document'
export default class Document extends NextDocument {
render() {
return (
<Html lang='en'>
<Head/>
<body>
<Main/>
<NextScript/>
</body>
</Html>
)
}
}