mirror of
https://github.com/ajnart/homarr.git
synced 2025-11-13 08:55:48 +01:00
9 lines
240 B
TypeScript
9 lines
240 B
TypeScript
|
|
import Document from 'next/document';
|
||
|
|
import { createGetInitialProps } from '@mantine/next';
|
||
|
|
|
||
|
|
const getInitialProps = createGetInitialProps();
|
||
|
|
|
||
|
|
export default class _Document extends Document {
|
||
|
|
static getInitialProps = getInitialProps;
|
||
|
|
}
|