28 lines
729 B
JavaScript
28 lines
729 B
JavaScript
|
import Document, { Head, Main, NextScript } from 'next/document'
|
||
|
import HashiHead from '@hashicorp/react-head'
|
||
|
|
||
|
export default class MyDocument extends Document {
|
||
|
static async getInitialProps(ctx) {
|
||
|
const initialProps = await Document.getInitialProps(ctx)
|
||
|
return { ...initialProps }
|
||
|
}
|
||
|
|
||
|
render() {
|
||
|
return (
|
||
|
<html>
|
||
|
<HashiHead is={Head} />
|
||
|
<body>
|
||
|
<Main />
|
||
|
<NextScript />
|
||
|
<script
|
||
|
noModule
|
||
|
dangerouslySetInnerHTML={{
|
||
|
__html: `window.MSInputMethodContext && document.documentMode && document.write('<script src="/ie-custom-properties.js"><\\x2fscript>');`,
|
||
|
}}
|
||
|
/>
|
||
|
</body>
|
||
|
</html>
|
||
|
)
|
||
|
}
|
||
|
}
|