https://github.com/solublestudio/gatsby-plugin-cookiehub
https://github.com/solublestudio/gatsby-plugin-cookiehub
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/solublestudio/gatsby-plugin-cookiehub
- Owner: solublestudio
- Created: 2021-03-17T14:48:41.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2022-10-03T14:31:13.000Z (over 3 years ago)
- Last Synced: 2025-02-16T13:44:17.968Z (over 1 year ago)
- Language: JavaScript
- Size: 3.91 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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,
},
},
]
```