-
I am using ReactGA.send({ hitType: 'pageview', page: '/home', title: 'Home Page View' }); I can see when the page is viewed on my google analytics. ReactGA.event({
category: 'Click button',
action: 'Click button',
label: 'Click button',
}); I checked both realtime reports and debug mode in google analyitics. |
Beta Was this translation helpful? Give feedback.
Answered by
awixor
Jul 19, 2023
Replies: 1 comment
-
Enabling debig mode fixed it for me: ReactGA.initialize([
{
trackingId: `${GTM_PUBLIC_ID}`,
gaOptions: {
debug_mode: true,
},
gtagOptions: {
debug_mode: true,
},
},
]); |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
awixor
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Enabling debig mode fixed it for me: