Bump next.js, add _document

main
Mike Fix 7 years ago committed by Jake Dexheimer
parent d62145f727
commit de81033262

2983
package-lock.json generated

File diff suppressed because it is too large Load Diff

@ -32,7 +32,7 @@
"morgan": "^1.8.2",
"morphmorph": "^0.0.2",
"ms": "^2.0.0",
"next": "^4.2.3",
"next": "^5.0.0",
"react": "^16.2.0",
"react-click-outside": "^3.0.0",
"react-codemirror2": "^3.0.7",

@ -0,0 +1,14 @@
import Document, { Head, Main, NextScript } from 'next/document'
export default class extends Document {
render() {
return (
<html lang="en">
<Head />
<body>
<Main />
<NextScript />
</body>
</html>
)
}
}

File diff suppressed because it is too large Load Diff
Loading…
Cancel
Save