gatsby-plugin-remarketer
v0.0.3
Published
Gatsby plugin for embedding various conversion trackers.
Downloads
2
Maintainers
Readme
gatsby-plugin-remarketer
Loads various remarketing pixels for common services & fires tracking events.
Currently Supports: Twitter
Note: by default, tracking events are not fired during development. This behavior can be enabled by setting the debug
property to true
in your plugin config.
Install
npm install --save gatsby-plugin-remarketer
How to use
// in your gatsby-config.js
plugins: [
{
resolve: `gatsby-plugin-remarketer`,
options: {
twitter: {
siteId: `YOUR TWITTER SITE ID`
},
debug: false // optional; true fires events in 'development'
}
}
];