Recently I integrated Google Analytics into my Nuxt website.
After installing the module, I configured it in the nuxt.config.js file like this:
gtm: {
id: 'GTM-WGW****'
},
googleAnalytics: {
id: 'UA-230******-*'
},
While event tracking for purchases is working well, I am facing an issue with tracking the source of the event. Instead of displaying sources like Google or Facebook, it only shows Stripe. This lack of source data for website users is a concern.
I attempted to use rudderstack in conjunction with the Nuxt module, but it resulted in duplicated traffic.
Are there any suggestions or solutions on how I can effectively track traffic sources using the Nuxt Google Analytics module ('@nuxtjs/google-analytics'
)?
Thank you in advance!