mirror of
https://github.com/fallenbagel/jellyseerr.git
synced 2026-01-01 04:08:45 -05:00
* build: bump deps and add some new eslint rules * refactor: run eslint --fix on code to convert to type imports where possible
34 lines
832 B
TypeScript
34 lines
832 B
TypeScript
import type { DocumentContext, DocumentInitialProps } from 'next/document';
|
|
import Document, { Head, Html, Main, NextScript } from 'next/document';
|
|
import React from 'react';
|
|
|
|
class MyDocument extends Document {
|
|
static async getInitialProps(
|
|
ctx: DocumentContext
|
|
): Promise<DocumentInitialProps> {
|
|
const initialProps = await Document.getInitialProps(ctx);
|
|
|
|
return initialProps;
|
|
}
|
|
|
|
render(): JSX.Element {
|
|
return (
|
|
<Html>
|
|
<Head>
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" />
|
|
<link
|
|
rel="stylesheet"
|
|
href="https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap"
|
|
/>
|
|
</Head>
|
|
<body>
|
|
<Main />
|
|
<NextScript />
|
|
</body>
|
|
</Html>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default MyDocument;
|