gatsby-plugin-freshchat
Version:
Gatsby plugin to add Freshchat to your site
23 lines (18 loc) • 407 B
Markdown
# gatsby-plugin-freshchat
Add Freshchat widget to your Gatsby site.
## Install
`npm install --save gatsby-plugin-freshchat`
## How to use
```js
// in your gatsby-config.js
module.exports = {
plugins: [
{
resolve: `gatsby-plugin-freshchat`,
options: {
token: "FRESHCHAT_TOKEN",
host: "FRESHCHAT_HOST",
},
},
]
}