Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/stackql/docusaurus-plugin-smartlook
A plugin which adds your Smartlook tracking code to your docusaurus site.
https://github.com/stackql/docusaurus-plugin-smartlook
docusaurus docusaurus-v2 javascript plugin react smartlook
Last synced: 2 months ago
JSON representation
A plugin which adds your Smartlook tracking code to your docusaurus site.
- Host: GitHub
- URL: https://github.com/stackql/docusaurus-plugin-smartlook
- Owner: stackql
- License: mit
- Created: 2021-11-06T22:58:08.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-05-02T01:53:12.000Z (over 2 years ago)
- Last Synced: 2024-10-01T16:37:38.622Z (4 months ago)
- Topics: docusaurus, docusaurus-v2, javascript, plugin, react, smartlook
- Language: JavaScript
- Size: 2.93 KB
- Stars: 6
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# docusaurus-plugin-smartlook
> Plugin to enable Smartlook with Docusaurus## Installation
NPM
```bash
npm i docusaurus-plugin-smartlook
```YARN
```bash
yarn add docusaurus-plugin-smartlook
```## Setup
Add to `plugins` in `docusaurus.config.js`:
```js
{
plugins: [
'docusaurus-plugin-smartlook',
...
]
}
```Add your Smartlook `projectKey` to `themeConfig` in the `docusaurus.config.js` file:
```js
{
themeConfig: {
smartlook: {
projectKey: SMARTLOOK_PROJECT_KEY,
},
...
}
}
```