I measure standard and custom Facebook events on my website. One of the very important event is PageView
. My site is a React site, so I included: react-facebook-pixel
and this is how I measure:
ReactPixel.pageView();
If I turn off this line ReactPixel.pageView()
, I still can see values at PageView. How is it possible? Does PageView statistics shows only event when ReactPixel.pageView();
is called, or it takes into account other things as well?