Community Plugin
View plugin on GitHubgatsby-plugin-smartlook
Plugin to enable Smartlook session replay and web analytics software with a Gatsby site
Installation
NPM
npm i gatsby-plugin-smartlook
YARN
yarn add gatsby-plugin-smartlook
Setup
Add your Smartlook projectKey
to plugins
in your gatsby-config.js
file:
// In your gatsby-config.js
module.exports = {
plugins: [
{
resolve: `gatsby-plugin-smartlook`,
options: {
projectKey: YOUR_PROJECT_KEY,
},
},
],
}