mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
c95abc209b
* Remove pathname (#5428) Same as #5424 * fix typo (#5451) * Add with style-sheet example * Fix readme * Fix typo
19 lines
436 B
JavaScript
19 lines
436 B
JavaScript
import Document, { Head, Main, NextScript } from 'next/document'
|
|
|
|
export default class MyDocument extends Document {
|
|
render () {
|
|
return (
|
|
<html>
|
|
<Head>
|
|
<style>{`body { margin: 0 }`}</style>
|
|
<link id='__style_sheet_extracted__' rel='stylesheet' href='/_next/static/bundle.css' />
|
|
</Head>
|
|
<body>
|
|
<Main />
|
|
<NextScript />
|
|
</body>
|
|
</html>
|
|
)
|
|
}
|
|
}
|