First of all, I thank JodyPSmith for the plugin. This is Forked work from his Repo.
I just updated dependencies and fixed issues in building.
A simple plugin that adds the tawk.to live chat window to every page of your Gatsby site.
Sign up for a free account at tawk.to
- Install using either npm or yarn:
yarn add gatsby-plugin-tawk.to
or
npm install gatsby-plugin-tawk.to
- Add to
gatsby-config.js
module.exports = {
plugins: [
{
resolve: `gatsby-plugin-tawk.to`,
options: {
tawkId: "YOUR_TAWK_ID",
tawkKey: "YOUR_TAWK_KEY",
// get this from the tawk script widget
// https://tawk.to/chat/YOUR_TAWK_ID/YOUR_TAWK_KEY
},
},
],
};