Migrate to Netlify Today

Netlify announces the next evolution of Gatsby Cloud. Learn more

ContactSign Up
Community Plugin
View plugin on GitHub

gatsby-plugin-cookiehub

Gatsby.js plugin to add the cookiehub GDPR compliance widget. Based on the gatsby-plugin-tag.

Setup

Get an account on Cookiehub

Install

npm install --save gatsby-plugin-cookiehub

or

yarn add gatsby-plugin-cookiehub

Use


// In your gatsby-config.js
module.exports = {
  plugins: [
    {
      resolve: `gatsby-plugin-cookiehub`,
      options: {
        // your cookiehub widget ID
        cookihubId: `YYYYYYY`,
        // your google analytics tracking id
        trackingId: `UA-XXXXXXXX-X`,
        // Puts tracking script in the head instead of the body
        head: false,
        // enable ip anonymization
        anonymize: true,        
      },
    },
  ],
}

Options

Puts tracking script in the head instead of the body. Default is false (render in the body)

anonymize

Adds anonymize_ip flag when calling gtag. More info here.

License

MIT

© 2023 Gatsby, Inc.