Gatsby plugin to add Honeybadger error tracking to your site.
npm install --save @honeybadger-io/gatsby-plugin-honeybadger
Add your API key in the plugin options in gatsby-config.js
:
// gatsby-config.js
module.exports = {
plugins: [
resolve: `@honeybadger-io/gatsby-plugin-honeybadger`,
options: {
apiKey: 'YOUR_API_KEY',
revision: `${Date.now()}`,
assetsUrl: 'https://foobar.com/assets'
}
]
}
[apiKey]
(String): the API key of your Honeybadger project.[revision]
(String):gatsby-plugin-honeybadger
useshoneybadger-webpack
to upload source maps to Honeybadger.options.revision
needs to be unique as it is the identifier that connects your errors to your source maps.[assetsURL]
(String): The base URL to production assets (scheme://host/path). Used to grab source maps.