Gatsby plugin that adds tawk.to JS file to site
npm install gatsby-plugin-tawk.to#### NPM Package: gatsby-plugin-tawk.to
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
1. Install using either npm or yarn:
``shell`
yarn add gatsby-plugin-tawk.to
or
`shell`
npm install gatsby-plugin-tawk.to
2. Add to `gatsby-config.js`
`javascriptgatsby-plugin-tawk.to
module.exports = {
plugins: [
{
resolve: ,``
options: {
tawkId: "YOUR_TAWK_ID",
tawkKey: "YOUR_TAWK_KEY",
// get this from the tawk script widget
},
},
],
};