1.0.0 • Published 5 years ago

gatsby-plugin-cookiehub v1.0.0

Weekly downloads
32
License
MIT
Repository
github
Last release
5 years ago

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

head

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