Created
January 25, 2024 06:44
-
-
Save chientrm/087941c83d633840a1de8d5c3a8912e6 to your computer and use it in GitHub Desktop.
SvelteKit Google Tag Manager
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
onMount(() => { | |
window.dataLayer = window.dataLayer || []; | |
window.dataLayer.push({ 'gtm.start': new Date().getTime(), event: 'gtm.js' }); | |
const gtmScript = document.createElement('script'); | |
gtmScript.src = 'https://www.googletagmanager.com/gtm.js?id=' + PUBLIC_TAG_ID; | |
document.head.append(gtmScript); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment