mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
a0d85d8bee
* fix: Update react-uwp example support Next 3 * style: Update linted codes
31 lines
949 B
JavaScript
31 lines
949 B
JavaScript
import React from 'react'
|
|
import PropTypes from 'prop-types'
|
|
import Document, { Head, Main, NextScript } from 'next/document'
|
|
|
|
export default class MyDocument extends Document {
|
|
static getInitialProps ({ renderPage }) {
|
|
const {html, head, errorHtml, chunks} = renderPage()
|
|
return { html, head, errorHtml, chunks }
|
|
}
|
|
|
|
static contextTypes = { theme: PropTypes.object };
|
|
|
|
render () {
|
|
return (
|
|
<html lang='en'>
|
|
<Head>
|
|
<title>My page</title>
|
|
<meta charSet='utf-8' />
|
|
<meta name='viewport' content='user-scalable=0, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width, height=device-height' />
|
|
<meta name='theme-color' content='yellowgreen' />
|
|
<link rel='stylesheet' href='https://fonts.googleapis.com/css?family=Roboto:300,400,500' />
|
|
</Head>
|
|
<body>
|
|
<Main />
|
|
<NextScript />
|
|
</body>
|
|
</html>
|
|
)
|
|
}
|
|
}
|