Skip to main content

Integrate UniLink with Gatsby

If you have a website created on Gatsby, you can add a UniLink live chat widget to it and talk to your visitors in real-time.

This can be done in 3 simple steps using UniLink’s Gatsby plugin.

1. Add the Gatsby plugin to your project

Add gatsby-plugin-chatwoot to your Gatsby project.

npm install --save gatsby-plugin-chatwoot

If you are using yarn, use:

yarn add gatsby-plugin-chatwoot

2. Add the plugin to your Gatsby config file

// In your gatsby-config.js
plugins: [
{
resolve: `gatsby-plugin-chatwoot`,
options: {
baseUrl: "BASE_URL", // Required
websiteToken: "WEBSITE_TOKEN", // Required
includeInDevelopment: false, // Optional
chatwootSettings: {}, // Optional
},
},
];

You can get your Website token and base URL from your Inbox settings in your UniLink account.

If you need to create a new website channel, follow the procedure illustrated here.

3. Start your server

You would be able to see the UniLink widget on the page now.