You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
496 B
JavaScript
25 lines
496 B
JavaScript
5 years ago
|
import Document, { Html, Head, Main, NextScript } from 'next/document'
|
||
|
|
||
|
class MyDocument extends Document {
|
||
|
static async getInitialProps(ctx) {
|
||
|
const initialProps = await Document.getInitialProps(ctx)
|
||
|
return { ...initialProps }
|
||
|
}
|
||
|
|
||
|
render() {
|
||
|
return (
|
||
|
<Html>
|
||
|
<Head>
|
||
|
<link rel="stylesheet" href="/layout.css" />
|
||
|
</Head>
|
||
|
<body>
|
||
|
<Main />
|
||
|
<NextScript />
|
||
|
</body>
|
||
|
</Html>
|
||
|
)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export default MyDocument
|