Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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.

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
}
}
];
```