You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
1.7 KiB
61 lines
1.7 KiB
import Document, { Html, Main, NextScript, Head } from "next/document" |
|
|
|
class MyDocument extends Document { |
|
// Only uncomment if you need to customize this behaviour |
|
// static async getInitialProps(ctx: DocumentContext) { |
|
// const initialProps = await Document.getInitialProps(ctx) |
|
// return {...initialProps} |
|
// } |
|
render() { |
|
return ( |
|
<Html lang="en"> |
|
<Head /> |
|
<body> |
|
<script async src="https://www.googletagmanager.com/gtag/js?id=G-DTHZT6R255"></script> |
|
<script |
|
type="text/javascript" |
|
dangerouslySetInnerHTML={{ |
|
__html: ` |
|
window.dataLayer = window.dataLayer || []; |
|
function gtag(){dataLayer.push(arguments);} |
|
gtag('js', new Date()); |
|
|
|
gtag('config', 'G-DTHZT6R255'); |
|
`, |
|
}} |
|
/> |
|
|
|
<Main /> |
|
<script |
|
type="text/javascript" |
|
dangerouslySetInnerHTML={{ |
|
__html: ` |
|
(function(m,e,t,r,i,k,a){m[i]=m[i]||function(){(m[i].a=m[i].a||[]).push(arguments)}; |
|
m[i].l=1*new Date(); |
|
for (var j = 0; j < document.scripts.length; j++) {if (document.scripts[j].src === r) { return; }} |
|
k=e.createElement(t),a=e.getElementsByTagName(t)[0],k.async=1,k.src=r,a.parentNode.insertBefore(k,a)}) |
|
(window, document, "script", "https://mc.yandex.ru/metrika/tag.js", "ym"); |
|
|
|
ym(90644479, "init", { |
|
clickmap:false, |
|
trackLinks:false, |
|
accurateTrackBounce:true |
|
}); |
|
window.dataLayer = window.dataLayer || []; |
|
function gtag(){dataLayer.push(arguments);} |
|
gtag('js', new Date()); |
|
|
|
gtag('config', 'G-DTHZT6R255'); |
|
`, |
|
}} |
|
></script> |
|
|
|
<NextScript /> |
|
<div id="modal-root"></div> |
|
</body> |
|
</Html> |
|
) |
|
} |
|
} |
|
|
|
export default MyDocument
|
|
|