DocSpace-buildtools/web/ASC.Web.Editor/pages/_document.js

31 lines
676 B
JavaScript
Raw Normal View History

import Document, { Html, Head, Main, NextScript } from "next/document";
import { ServerStyleSheet } from "styled-components";
export default class MyDocument extends Document {
static getInitialProps({ renderPage }) {
const sheet = new ServerStyleSheet();
const page = renderPage((App) => (props) =>
sheet.collectStyles(<App {...props} />)
);
const styleTags = sheet.getStyleElement();
return { ...page, styleTags };
}
render() {
return (
<Html>
<Head title="SSR TEST">
{this.props.styleTags}
</Head>
<body>
<Main />
<NextScript />
</body>
</Html>
);
}
}