You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

11 regels
289 B

  1. // log the pageview with their URL
  2. export const pageview = (url) => {
  3. window.gtag('config', process.env.NEXT_PUBLIC_GOOGLE_ANALYTICS, {
  4. page_path: url,
  5. })
  6. }
  7. // log specific events happening.
  8. export const event = ({ action, params }) => {
  9. window.gtag('event', action, params)
  10. }