Me need send traffic only from one page of the site. I'm using React v17 and React Router v5.
I used Universal Analytics, but it no longer supports it, and Google Analytics 4 sends traffic to all pages. I tried react-ga4 and react-gtm-hook but it doesn't work.
You can check the current pathname(for example in
history.listen) and only send a "pageview" event when the user is on the necessary page.or call
GoogleAnalytics.send('pageview');once inuseEffectin your page component