25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

11 lines
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. }