mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
25 lines
607 B
JavaScript
25 lines
607 B
JavaScript
|
import Document, { Head, Main, NextScript } from 'next/document'
|
||
|
import { StyleSheetServer } from 'aphrodite'
|
||
|
|
||
|
export default class MyDocument extends Document {
|
||
|
static async getInitialProps ({ renderPage }) {
|
||
|
const { html, css } = StyleSheetServer.renderStatic(() => renderPage())
|
||
|
return { ...html, css }
|
||
|
}
|
||
|
|
||
|
render () {
|
||
|
return (
|
||
|
<html>
|
||
|
<Head>
|
||
|
<title>My page</title>
|
||
|
<style dangerouslySetInnerHTML={{ __html: this.props.css.content }} />
|
||
|
</Head>
|
||
|
<body>
|
||
|
<Main />
|
||
|
<NextScript />
|
||
|
</body>
|
||
|
</html>
|
||
|
)
|
||
|
}
|
||
|
}
|