ente/src/pages/_document.tsx

50 lines
1.5 KiB
TypeScript
Raw Normal View History

2020-09-09 21:09:51 +00:00
import Document, {
Html, Head, Main, NextScript,
} from 'next/document';
import { ServerStyleSheet } from 'styled-components';
2020-09-09 21:09:51 +00:00
export default class MyDocument extends Document {
static async getInitialProps(ctx) {
const sheet = new ServerStyleSheet()
const originalRenderPage = ctx.renderPage
try {
ctx.renderPage = () =>
originalRenderPage({
enhanceApp: (App) => (props) =>
sheet.collectStyles(<App {...props} />),
})
const initialProps = await Document.getInitialProps(ctx)
return {
...initialProps,
styles: (
<>
{initialProps.styles}
{sheet.getStyleElement()}
</>
),
}
} finally {
sheet.seal()
}
}
2020-09-09 21:09:51 +00:00
render() {
return (
2020-09-13 17:15:48 +00:00
<Html lang='en'>
2020-09-09 21:09:51 +00:00
<Head>
2020-09-13 17:15:48 +00:00
<meta
name="description"
content="ente is a privacy friendly alternative to Google Photos that supports end-to-end encryption. Because memories are precious."
/>
2020-09-09 21:09:51 +00:00
<link rel="icon" href="/icon.png" type="image/png"/>
</Head>
<body>
<Main />
<NextScript />
</body>
</Html>
);
}
}