@aniket/gatsby-plugin-facebook-pixel
v1.0.11
Published
Gatsby plugin to add facebook pixel onto a site
Downloads
11
Maintainers
Readme
gatsby-plugin-facebook-pixel
Easily add Facebook Pixel to your Gatsby site. At this time, 'ViewContent' event is triggered via onRouteUpdate.
'ViewContent' can be disabled by setting disableViewContent
as true
in gatsby-config.js plugin options.
Install
npm i -S @aniket/gatsby-plugin-facebook-pixel
How to use
// In your gatsby-config.js
plugins: [
{
resolve: `gatsby-plugin-facebook-pixel`,
options: {
pixelId: "pixel id here",
disableViewContent: false,
},
},
];