mirror of
https://github.com/swissmakers/swiss-datashare.git
synced 2026-04-21 06:03:13 +02: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;
|
||
|
|
}
|