1.0.1 • Published 2 years ago

@stackql/gatsby-plugin-smartlook v1.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

gatsby-plugin-smartlook

Plugin to enable Smartlook session replay and web analytics software with a Gatsby site

Installation

npm i gatsby-plugin-smartlook
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,
      },
    },
  ],
}