1
0
Fork 0
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:
Tomáš Witek 2018-08-27 16:13:02 +02:00 committed by Tim Neutkens
parent b7fe234005
commit 66ec2061c1
2 changed files with 4 additions and 27 deletions

View file

@ -8,9 +8,9 @@
"start": "next start"
},
"dependencies": {
"@zeit/next-css": "0.0.7",
"next": "5.0.0",
"react": "16.2.0",
"react-dom": "16.2.0"
"@zeit/next-css": "0.2.1-canary.2",
"next": "7.0.0-canary.3",
"react": "16.4.2",
"react-dom": "16.4.2"
}
}

View file

@ -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>
)
}
}