Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/stackql/gatsby-plugin-smartlook

Plugin to enable Smartlook session replay and web analytics software with a Gatsby site
https://github.com/stackql/gatsby-plugin-smartlook

gatsby gatsby-plugin gatsbyjs javascript react smartlook

Last synced: 3 months ago
JSON representation

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

Awesome Lists containing this project

README

        

# gatsby-plugin-smartlook
> Plugin to enable Smartlook session replay and web analytics software with a Gatsby site

## Installation

NPM

```bash
npm i gatsby-plugin-smartlook
```

YARN

```bash
yarn add gatsby-plugin-smartlook
```

## Setup

Add your Smartlook `projectKey` to `plugins` in your `gatsby-config.js` file:

```javascript
// In your gatsby-config.js
module.exports = {
plugins: [
{
resolve: `gatsby-plugin-smartlook`,
options: {
projectKey: YOUR_PROJECT_KEY,
},
},
],
}
```