/gatsby-plugin-sentry

Gatsby plugin to add Sentry error tracking to your site.

Primary LanguageJavaScriptMIT LicenseMIT

gatsby-plugin-sentry

Gatsby plugin to add Sentry error tracking to your site.

Learn more about Sentry here.

Install

npm install --save gatsby-plugin-sentry

How to use

// In your gatsby-config.js
plugins: [
  {
    resolve: 'gatsby-plugin-sentry',
    options: {
      dsn: 'YOUR_SENTRY_DSN_URL',
      // Raven.js version, this is optional.
      version: '3.19.1'
    },
  },
]