Gwk-Cultural-Park/lib/ga/index.js

12 lines
288 B
JavaScript
Raw Permalink Normal View History

2024-09-07 01:40:25 +00:00
// log the pageview with their URL
export const pageview = (url) => {
window.gtag('config', process.env.NEXT_PUBLIC_GOOGLE_ANALYTICS, {
page_path: url,
})
}
// log specific events happening.
export const event = ({ action, params }) => {
window.gtag('event', action, params)
}