mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-14 15:09:22 +00:00
18 lines
475 B
JavaScript
18 lines
475 B
JavaScript
import BLOG from '@/blog.config'
|
|
|
|
// https://developers.google.com/analytics/devguides/collection/gtagjs/pages
|
|
export const pageview = url => {
|
|
window.gtag('config', BLOG.ANALYTICS_GOOGLE_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
|
|
})
|
|
}
|