0
import { newTracker } from '@snowplow/browser-tracker'

newTracker('sp1', {{ my_url }}, {
  appId: 'app',
  plugins: [],
})

And I'm using it like

import { trackPageView } from '@snowplow/browser-tracker'
.
.
.
useEffect(() => {
  trackPageView()
}, [])

In the network tab, I can see the request to {{url}}/com.snowplowanalytics.snowplow/tp2 getting blocked with status blocked:other.

only4
  • 139
  • 1
  • 11

1 Answers1

0

Turn off all the ad-blockers extenstions.

only4
  • 139
  • 1
  • 11