Skip to content

Instantly share code, notes, and snippets.

@sashadev-sky
Created November 10, 2021 08:10
Show Gist options
  • Save sashadev-sky/6996fd0b66f91a57eb1b79b52fbf5fb5 to your computer and use it in GitHub Desktop.
Save sashadev-sky/6996fd0b66f91a57eb1b79b52fbf5fb5 to your computer and use it in GitHub Desktop.
import { GtmInstance } from './types'
// will need this for multiple container environments
export default ({ $gtm }: { $gtm: GtmInstance }) => {
const gtagId = process.env.GOOGLE_TAG_MANAGER_ID
if (gtagId) {
$gtm.init(gtagId)
$gtm.push({ event: 'gtm.js', 'gtm.start': new Date().getTime() })
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment