1.0.4 • Published 2 years ago

gatsby-plugin-enquirybot v1.0.4

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

gatsby-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

  1. Install using either npm or yarn:
yarn add gatsby-plugin-enquirybot

or

npm install gatsby-plugin-enquirybot
  1. Add to gatsby-config.js
module.exports = {
  plugins: [
    {
      resolve: `gatsby-plugin-enquirybot`,
      options: {
        botId: "YOUR_BOT_ID",
        development: true
      },
    },
  ],
};