Gatsby plugin that adds tawk JS file to site
npm install gatsby-plugin-tawkA simple plugin that adds the tawk live chat window [https://dashboard.tawk.to/#/admin] to every page of your Gatsby site.
sign up for a free account at [https://www.tawk.to/]
1. Install using either npm or yarn:
```
yarn add gatsby-plugin-tawk
or
``
npm install gatsby-plugin-tawk
2. Add to `gatsby-config.js`
`javascriptgatsby-plugin-tawk
module.exports = {
plugins: [
{
resolve: ,``
options: {
tawkId: "YOUR_TAWK_ID",
// get this from the tawk script widget
},
},
],
};