Created
June 7, 2021 08:46
-
-
Save DopamineDriven/dbf9512f0d008ac890350e8c2b4bfcc4 to your computer and use it in GitHub Desktop.
final-analytics-code
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
export const GA_TRACKING_ID = | |
process.env.NEXT_PUBLIC_GA_TRACKING_ID ?? ''; | |
export const pageview = (url: URL) => { | |
window.gtag('config', GA_TRACKING_ID, { | |
page_path: url | |
}); | |
}; | |
export const event = ( | |
action: Gtag.EventNames, | |
{ event_category, event_label, value }: Gtag.EventParams | |
) => { | |
window.gtag('event', action, { | |
event_category, | |
event_label, | |
value | |
}); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment