Gwk-Cultural-Park/lib/ga/index.js
2024-09-07 08:40:25 +07:00

12 lines
288 B
JavaScript

// 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)
}