mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
Css example upgrade (#5039)
It looks like we don't need the `_document.js` file anymore. Is that correct?
This commit is contained in:
parent
b7fe234005
commit
66ec2061c1
|
@ -8,9 +8,9 @@
|
||||||
"start": "next start"
|
"start": "next start"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@zeit/next-css": "0.0.7",
|
"@zeit/next-css": "0.2.1-canary.2",
|
||||||
"next": "5.0.0",
|
"next": "7.0.0-canary.3",
|
||||||
"react": "16.2.0",
|
"react": "16.4.2",
|
||||||
"react-dom": "16.2.0"
|
"react-dom": "16.4.2"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,23 +0,0 @@
|
||||||
/*
|
|
||||||
In production the stylesheet is compiled to .next/static/style.css and served from /_next/static/style.css
|
|
||||||
|
|
||||||
You have to include it into the page using either next/head or a custom _document.js, as is being done in this file.
|
|
||||||
*/
|
|
||||||
|
|
||||||
import Document, { Head, Main, NextScript } from 'next/document'
|
|
||||||
|
|
||||||
export default class MyDocument extends Document {
|
|
||||||
render () {
|
|
||||||
return (
|
|
||||||
<html>
|
|
||||||
<Head>
|
|
||||||
<link rel='stylesheet' href='/_next/static/style.css' />
|
|
||||||
</Head>
|
|
||||||
<body>
|
|
||||||
<Main />
|
|
||||||
<NextScript />
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Reference in a new issue