An open API service indexing awesome lists of open source software.

https://github.com/solublestudio/gatsby-plugin-cookiehub


https://github.com/solublestudio/gatsby-plugin-cookiehub

Last synced: about 1 year ago
JSON representation

Awesome Lists containing this project

README

          

# Gatsby Plugin Cookiehub

Add scripts of [Cookiehub](https://www.cookiehub.com/) in your project with support development evironment

## Install

`yarn add @solublestudio/gatsby-plugin-cookiehub` / `npm install @solublestudio/gatsby-plugin-cookiehub`

## How to use

Add plugin to `gatsby-config.js`

```javascript
plugins: [
...otherPlugins
{
resolve: "@solublestudio/gatsby-plugin-cookiehub",
options: {
cookiehubID: "YOUR_COOKIEHUB_ID",
// It is default to true only in development environment
isDev: false,
// Defaults to false, it is specify cookiehub script it will added in
head: false,
},
},
]
```