add bugsnag tokens

This commit is contained in:
Jeff Escalante 2020-03-31 18:26:45 -04:00
parent 4afd107eeb
commit 55df737179
No known key found for this signature in database
GPG Key ID: 32D23C61AB5450DB
1 changed files with 3 additions and 3 deletions

View File

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