ga-4-react icon indicating copy to clipboard operation
ga-4-react copied to clipboard

google analytics 4 wrapper for react

Results 9 ga-4-react issues
Sort by recently updated
recently updated
newest added

Hello, I have the following configuration ![image](https://user-images.githubusercontent.com/27776241/135673366-26e2e1cc-c044-4c86-b2c5-099bd40aed47.png) I'm trying to anonymize the ip address but `ga4.gtag('config', 'G-XXXXXXX', { 'anonymize_ip': true });` is not working Any suggestions?

Here is my GA4 configuration in app.js in my react app: ``` import { GA4React } from 'ga-4-react'; const ga4react = new GA4React('G-P36XPJZXD1'); ga4react.initialize().then( ga4 => { ga4.pageview('path'); ga4.event('event', 'pageview',...

I have implemented the manual start with my React project and it works fine. Now migrating to Next JS but I am not sure exactly how I should be implementing...

Hey, Is "GA4 is being initialized" an expected error within console on any page using this package. Looking at the js code for the package, it seems like the error...

Does this package supports older versions of Google analytics with Tracking Id and not Measurement Id?

gtag.js allows you to call gtag('consent', 'default', ...) and then later on gtag('consent', 'update', ...) to prevent tracking and cookies before the user has a chance to consent to them....

Like the title says, trying to access the application that uses manual start with an addblocker activated, I get the following error: ![image](https://user-images.githubusercontent.com/4018247/113386356-6093c900-938a-11eb-9b70-08f8460c4e85.png) I'm also having a hard time configuring...

Hello, I haven't been able to find a clear answer to this online. Do I need to worry about adding page view code if I am using a BrowserRouter? Or...