mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
2a14d32235
* Fix Fela example Styles must be set via the innerHTML. Otherwise, a fontFamily "Segoe UI” will have encoded quotes. * Add example Which didn’t work previously. * Fix lint
36 lines
711 B
JavaScript
36 lines
711 B
JavaScript
import Document, { Head, Main, NextScript } from 'next/document'
|
|
import { getRenderer } from '../fela'
|
|
|
|
export default class MyDocument extends Document {
|
|
static getInitialProps ({ renderPage }) {
|
|
const page = renderPage()
|
|
const renderer = getRenderer()
|
|
const css = renderer.renderToString()
|
|
|
|
renderer.clear()
|
|
|
|
return {
|
|
...page,
|
|
css
|
|
}
|
|
}
|
|
|
|
render () {
|
|
return (
|
|
<html>
|
|
<Head>
|
|
<title>My page</title>
|
|
<style
|
|
dangerouslySetInnerHTML={{ __html: this.props.css }}
|
|
id='fela-stylesheet'
|
|
/>
|
|
</Head>
|
|
<body>
|
|
<Main />
|
|
<NextScript />
|
|
</body>
|
|
</html>
|
|
)
|
|
}
|
|
}
|