Files
NotionNext/lib/plugins/gtag.js
tangly1024 33ed18d3f5 gtag fix
2025-04-11 17:41:16 +08:00

18 lines
547 B
JavaScript

// https://developers.google.com/analytics/devguides/collection/gtagjs/pages
export const pageview = (url, ANALYTICS_GOOGLE_ID) => {
if (window.gtag === undefined) { return }
window.gtag('config', ANALYTICS_GOOGLE_ID, {
page_path: url
})
}
// https://developers.google.com/analytics/devguides/collection/gtagjs/events
export const event = ({ action, category, label, value }) => {
if (window.gtag === undefined) { return }
window.gtag('event', action, {
event_category: category,
event_label: label,
value: value
})
}