Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/stackql/gatsby-plugin-smartlook
- Owner: stackql
- License: mit
- Created: 2021-11-05T23:51:20.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-05-02T01:46:06.000Z (over 2 years ago)
- Last Synced: 2024-10-03T08:34:30.019Z (3 months ago)
- Topics: gatsby, gatsby-plugin, gatsbyjs, javascript, react, smartlook
- Language: JavaScript
- Size: 300 KB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
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,
},
},
],
}
```