fix(index.html): update Google Analytics integration to load only in production

This commit is contained in:
chamikaJ
2025-05-16 12:42:33 +05:30
parent 0d08634c78
commit 2a3f87cac1

View File

@@ -26,13 +26,21 @@
})(window, document, "clarity", "script", "dx77073klh"); })(window, document, "clarity", "script", "dx77073klh");
} }
</script> </script>
<!-- Google Analytics --> <!-- Google Analytics (only on production) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-7KSRKQ1397"></script> <script type="text/javascript">
<script> if (window.location.hostname === 'app.worklenz.com') {
window.dataLayer = window.dataLayer || []; var gaScript = document.createElement('script');
function gtag() { dataLayer.push(arguments); } gaScript.async = true;
gtag('js', new Date()); gaScript.src = 'https://www.googletagmanager.com/gtag/js?id=G-7KSRKQ1397';
gtag('config', 'G-7KSRKQ1397'); document.head.appendChild(gaScript);
gaScript.onload = function() {
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-7KSRKQ1397');
};
}
</script> </script>
</head> </head>