https://github.com/highlight/gatsby-plugin-highlight
Gatsby plugin for adding Highlight error monitoring and session recording.
https://github.com/highlight/gatsby-plugin-highlight
Last synced: 3 months ago
JSON representation
Gatsby plugin for adding Highlight error monitoring and session recording.
- Host: GitHub
- URL: https://github.com/highlight/gatsby-plugin-highlight
- Owner: highlight
- License: mit
- Created: 2021-07-28T18:52:15.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2024-09-23T23:35:01.000Z (9 months ago)
- Last Synced: 2025-02-25T19:14:38.322Z (3 months ago)
- Language: JavaScript
- Homepage: https://www.gatsbyjs.com/plugins/@highlight-run/gatsby-plugin-highlight
- Size: 1.15 MB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Official Highlight SDK for GatsbyJS
Register the package as a plugin in `gatsby-config.js`:
```javascript
module.exports = {
plugins: [
{
resolve: "@highlight-run/gatsby-plugin-highlight",
options: {
orgID: 'MY_ORG_ID',
// See all the options here: https://www.highlight.io/docs/sdk/client#options
disableNetworkRecording: false,
disableConsoleRecording: false,
enableStrictPrivacy: false,
environment: 'production',
version: '5.2.3',
networkRecording: true,
}
},
]
}
```Options will be passed directly to `H.init`. See all available options in [our docs](https://www.highlight.io/docs/sdk/client#options).
## Links
- [Official SDK Docs](https://highlight.io/docs)
- [Website](https://highlight.io)