ente/src/pages/_document.tsx

49 lines
1.5 KiB
TypeScript
Raw Normal View History

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;
2020-09-09 21:09:51 +00:00
try {
ctx.renderPage = () =>
originalRenderPage({
enhanceApp: (App) => (props) =>
sheet.collectStyles(<App {...props} />),
});
2020-09-09 21:09:51 +00:00
const initialProps = await Document.getInitialProps(ctx);
2020-09-09 21:09:51 +00:00
return {
...initialProps,
styles: (
<>
{initialProps.styles}
{sheet.getStyleElement()}
</>
),
};
2020-09-09 21:09:51 +00:00
} finally {
sheet.seal();
2020-09-09 21:09:51 +00:00
}
}
2020-09-09 21:09:51 +00:00
render() {
return (
<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."
/>
<link rel="icon" href="/icon.png" type="image/png" />
2020-09-09 21:09:51 +00:00
</Head>
<body>
<Main />
<NextScript />
</body>
</Html>
);
}
}