Skip to content

Instantly share code, notes, and snippets.

@DopamineDriven
Created June 7, 2021 08:46
Show Gist options
  • Save DopamineDriven/dbf9512f0d008ac890350e8c2b4bfcc4 to your computer and use it in GitHub Desktop.
Save DopamineDriven/dbf9512f0d008ac890350e8c2b4bfcc4 to your computer and use it in GitHub Desktop.
final-analytics-code
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