open-nomad/website/lib/bugsnag.js
2020-03-03 17:51:24 -05:00

18 lines
409 B
JavaScript

import React from 'react'
import bugsnag from '@bugsnag/js'
import bugsnagReact from '@bugsnag/plugin-react'
const apiKey =
typeof window === 'undefined'
? '61141296f1ba00a95a8788b7871e1184'
: '4fa712dfcabddd05da29fd1f5ea5a4c0'
const bugsnagClient = bugsnag({
apiKey,
releaseStage: process.env.NODE_ENV || 'development'
})
bugsnagClient.use(bugsnagReact, React)
export default bugsnagClient