diff --git a/examples/with-next-css/package.json b/examples/with-next-css/package.json index 65d5f264..28e6f81d 100644 --- a/examples/with-next-css/package.json +++ b/examples/with-next-css/package.json @@ -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" } } diff --git a/examples/with-next-css/pages/_document.js b/examples/with-next-css/pages/_document.js deleted file mode 100644 index 512ea5e4..00000000 --- a/examples/with-next-css/pages/_document.js +++ /dev/null @@ -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 ( - - - - - -
- - - - ) - } -}