mirror of
https://github.com/kamranahmedse/developer-roadmap.git
synced 2025-02-24 03:23:08 +01:00
18 lines
488 B
JavaScript
18 lines
488 B
JavaScript
export const GA_TRACKING_ID = 'UA-139582634-1';
|
|
|
|
// https://developers.google.com/analytics/devguides/collection/gtagjs/pages
|
|
export const firePageView = url => {
|
|
window.gtag('config', GA_TRACKING_ID, {
|
|
page_path: url,
|
|
})
|
|
};
|
|
|
|
// https://developers.google.com/analytics/devguides/collection/gtagjs/events
|
|
export const event = ({ action, category, label, value }) => {
|
|
window.gtag('event', action, {
|
|
event_category: category,
|
|
event_label: label,
|
|
value: value,
|
|
})
|
|
};
|