Community Plugin
View plugin on GitHubgatsby-plugin-enquirybot
A simple plugin that adds the enquirybot live chat window [https://www.enquirybot.com/] to every page of your Gatsby site.
sign up for a free account at [https://www.enquirybot.com/]
How to use
- Install using either npm or yarn:
yarn add gatsby-plugin-enquirybot
or
npm install gatsby-plugin-enquirybot
- Add to
gatsby-config.js
module.exports = {
plugins: [
{
resolve: `gatsby-plugin-enquirybot`,
options: {
botId: "YOUR_BOT_ID",
development: true
},
},
],
};