mirror of
https://github.com/ajnart/homarr.git
synced 2026-01-19 22:12:15 +01:00
21 lines
431 B
TypeScript
21 lines
431 B
TypeScript
import { createGetInitialProps } from '@mantine/next';
|
|
import Document, { Head, Html, Main, NextScript } from 'next/document';
|
|
|
|
const getInitialProps = createGetInitialProps();
|
|
|
|
export default class _Document extends Document {
|
|
static getInitialProps = getInitialProps;
|
|
|
|
render() {
|
|
return (
|
|
<Html>
|
|
<Head />
|
|
<body>
|
|
<Main />
|
|
<NextScript />
|
|
</body>
|
|
</Html>
|
|
);
|
|
}
|
|
}
|