1
0
Fork 0
mirror of https://github.com/terribleplan/next.js.git synced 2024-01-19 02:48:18 +00:00

examples: fix SSR of styled-components

This commit is contained in:
nkzawa 2017-01-01 20:24:48 +09:00
parent 33fa931207
commit 64aa4454ac

View file

@ -3,7 +3,6 @@ import styleSheet from 'styled-components/lib/models/StyleSheet'
export default class MyDocument extends Document {
static async getInitialProps ({ renderPage }) {
styleSheet.flush()
const page = renderPage()
const style = styleSheet.rules().map(rule => rule.cssText).join('\n')
return { ...page, style }