Gatsby plugin to add Rollbar error tracking to your site.
Learn more about Rollbar here.
npm install --save gatsby-plugin-rollbar
// In your gatsby-config.js
plugins: [
{
resolve: "gatsby-plugin-rollbar",
options: {
accessToken: "YOUR_ROLLBAR_ACCESS_TOKEN",
// For all configuration options, see https://docs.rollbar.com/docs/rollbarjs-configuration-reference
captureUncaught: true,
captureUnhandledRejections: true,
payload: {
environment: "production"
}
}
}
];