@honeybadger-io/gatsby-plugin-honeybadger
v6.0.33
Published
Gatsby plugin to add Honeybadger error tracking to your site.
Downloads
702
Readme
@honeybadger-io/gatsby-plugin-honeybadger
Gatsby plugin to add Honeybadger error tracking to your site.
Install
npm install --save @honeybadger-io/gatsby-plugin-honeybadger
How to use
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',
environment: process.env.NODE_ENV
}
}
]
}
Options
[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.[environment]
(String): Current environment. Used to indicate the environment where the error occurred. Optional, defaults toprocess.env.NODE_ENV
.
License
This package is MIT licensed. See the MIT-LICENSE file in this folder for details.