mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-06-08 07:26:47 +00:00
Code🤣
This commit is contained in:
18
lib/gtag.js
Normal file
18
lib/gtag.js
Normal file
@@ -0,0 +1,18 @@
|
||||
import BLOG from '@/blog.config'
|
||||
export const GA_TRACKING_ID = BLOG.analytics.gaConfig.measurementId
|
||||
|
||||
// https://developers.google.com/analytics/devguides/collection/gtagjs/pages
|
||||
export const pageview = url => {
|
||||
window.gtag('config', GA_TRACKING_ID, {
|
||||
page_path: url
|
||||
})
|
||||
}
|
||||
|
||||
// https://developers.google.com/analytics/devguides/collection/gtagjs/events
|
||||
export const event = ({ action, category, label, value }) => {
|
||||
window.gtag('event', action, {
|
||||
event_category: category,
|
||||
event_label: label,
|
||||
value: value
|
||||
})
|
||||
}
|
||||
Reference in New Issue
Block a user