Gatsby plugin to add Sentry error tracking to your site.
Learn more about Sentry here.
npm install --save gatsby-plugin-sentry
// 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'
},
},
]