1
0
Fork 0
mirror of https://github.com/terribleplan/next.js.git synced 2024-01-19 02:48:18 +00:00
next.js/examples/with-style-sheet/pages/_document.js

23 lines
482 B
JavaScript
Raw Normal View History

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