mirror of https://github.com/sgoudham/carbon.git
Bump next.js, add _document
parent
d62145f727
commit
de81033262
File diff suppressed because it is too large
Load Diff
@ -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>
|
||||
)
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue