您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 

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