No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 

11 líneas
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. }