Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/loicmahieu/gatsby-plugin-sentry
Gatsby plugin to add Sentry error tracking to your site.
https://github.com/loicmahieu/gatsby-plugin-sentry
Last synced: about 2 months ago
JSON representation
Gatsby plugin to add Sentry error tracking to your site.
- Host: GitHub
- URL: https://github.com/loicmahieu/gatsby-plugin-sentry
- Owner: LoicMahieu
- License: mit
- Created: 2019-03-21T12:04:31.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2023-01-04T21:41:46.000Z (almost 2 years ago)
- Last Synced: 2024-08-09T11:14:42.442Z (5 months ago)
- Language: JavaScript
- Size: 447 KB
- Stars: 3
- Watchers: 3
- Forks: 1
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# gatsby-plugin-sentry
Gatsby plugin to add Sentry error tracking to your site.
## Install
`npm install --save @loicmahieu/gatsby-plugin-sentry`
## How to use
```javascript
// In your gatsby-config.js
plugins: [
{
resolve: "@loicmahieu/gatsby-plugin-sentry",
options: {
dsn: "YOUR_SENTRY_DSN_URL",
// Any sentry client settings, see https://docs.sentry.io/clients/node/config/#optional-settings
}
}
];
```