2021-09-04 12:02:13 +00:00
|
|
|
import NextDocument, { Html, Head, Main, NextScript, DocumentContext } from 'next/document'
|
2021-11-26 15:14:10 +00:00
|
|
|
import { getCssText } from 'styles'
|
|
|
|
import { GA_TRACKING_ID } from 'utils/gtag'
|
2021-09-04 12:02:13 +00:00
|
|
|
|
|
|
|
class MyDocument extends NextDocument {
|
2021-11-26 15:14:10 +00:00
|
|
|
static async getInitialProps(ctx: DocumentContext) {
|
|
|
|
const initialProps = await NextDocument.getInitialProps(ctx)
|
2021-09-04 12:02:13 +00:00
|
|
|
|
2021-11-26 15:14:10 +00:00
|
|
|
return {
|
|
|
|
...initialProps,
|
|
|
|
styles: (
|
|
|
|
<>
|
|
|
|
{initialProps.styles}
|
|
|
|
<style id="stitches" dangerouslySetInnerHTML={{ __html: getCssText() }} />
|
|
|
|
</>
|
|
|
|
),
|
2021-09-04 12:02:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
render(): JSX.Element {
|
|
|
|
return (
|
|
|
|
<Html lang="en">
|
|
|
|
<Head>
|
|
|
|
<script async src={`https://www.googletagmanager.com/gtag/js?id=${GA_TRACKING_ID}`} />
|
|
|
|
<script
|
|
|
|
dangerouslySetInnerHTML={{
|
|
|
|
__html: `
|
|
|
|
window.dataLayer = window.dataLayer || [];
|
|
|
|
function gtag(){dataLayer.push(arguments);}
|
|
|
|
gtag('js', new Date());
|
|
|
|
gtag('config', '${GA_TRACKING_ID}', {
|
|
|
|
page_path: window.location.pathname,
|
|
|
|
});
|
|
|
|
`,
|
|
|
|
}}
|
|
|
|
/>
|
|
|
|
</Head>
|
|
|
|
<body>
|
|
|
|
<Main />
|
|
|
|
<NextScript />
|
|
|
|
</body>
|
|
|
|
</Html>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default MyDocument
|