mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-19 23:16:48 +00:00
Merge branch 'main' into feat/localization-404
This commit is contained in:
@@ -1,12 +1,17 @@
|
||||
import { useEffect } from 'react'
|
||||
import { useRouter } from 'next/router'
|
||||
import { siteConfig } from '@/lib/config'
|
||||
import * as gtag from '@/lib/plugins/gtag'
|
||||
|
||||
import { useRouter } from 'next/router'
|
||||
import { useEffect } from 'react'
|
||||
/**
|
||||
* Google Analytics
|
||||
* @returns
|
||||
*/
|
||||
const Gtag = () => {
|
||||
const router = useRouter()
|
||||
const ANALYTICS_GOOGLE_ID = siteConfig('ANALYTICS_GOOGLE_ID')
|
||||
useEffect(() => {
|
||||
const gtagRouteChange = url => {
|
||||
gtag.pageview(url)
|
||||
gtag.pageview(url, ANALYTICS_GOOGLE_ID)
|
||||
}
|
||||
router.events.on('routeChangeComplete', gtagRouteChange)
|
||||
return () => {
|
||||
|
||||
Reference in New Issue
Block a user