Migrate to Netlify Today

Netlify announces the next evolution of Gatsby Cloud. Learn more

ContactSign Up
Community Plugin
View plugin on GitHub

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'
    }
  }
];
© 2023 Gatsby, Inc.