tldraw/apps/dotcom/sentry.client.config.ts
alex 57fb7a0650
Initial bemo worker setup (#4017)
Sets up preview deploys etc. for bemo worker.

There's enough going on here that I wanted to make it its own PR. I'll
rework david's spike on top of it once it's landed.

### Change Type

- [x] `internal` — Does not affect user-facing stuff
- [x] `chore` — Updating dependencies, other boring stuff

---------

Co-authored-by: David Sheldrick <d.j.sheldrick@gmail.com>
2024-07-01 11:35:23 +00:00

58 lines
1.9 KiB
TypeScript

// This file configures the initialization of Sentry on the browser.
// The config you add here will be used whenever a page is visited.
// https://docs.sentry.io/platforms/javascript/guides/nextjs/
import { ExtraErrorData } from '@sentry/integrations'
import * as Sentry from '@sentry/react'
import { Editor, getErrorAnnotations } from 'tldraw'
import { sentryReleaseName } from './sentry-release-name'
import { env } from './src/utils/env'
import { setGlobalErrorReporter } from './src/utils/errorReporting'
function requireSentryDsn() {
if (!process.env.SENTRY_DSN) {
throw new Error('SENTRY_DSN is required')
}
return process.env.SENTRY_DSN as string
}
Sentry.init({
dsn: env === 'development' ? undefined : requireSentryDsn(),
// Adjust this value in production, or use tracesSampler for greater control
tracesSampleRate: 1.0,
release: sentryReleaseName,
environment: env,
// eslint-disable-next-line deprecation/deprecation
integrations: [new ExtraErrorData({ depth: 10 }) as any],
// ...
// Note: if you want to override the automatic release value, do not set a
// `release` value here - use the environment variable `SENTRY_RELEASE`, so
// that it will also get attached to your source maps
beforeSend: (event, hint) => {
if (env === 'development') {
console.error('[SentryDev]', hint.originalException ?? hint.syntheticException)
return null
}
// todo: re-evaulate use of window here?
const editor: Editor | undefined = (window as any).editor
const appErrorAnnotations = editor?.createErrorAnnotations('unknown', 'unknown')
const errorAnnotations = getErrorAnnotations(hint.originalException as any)
event.tags = {
...appErrorAnnotations?.tags,
...errorAnnotations.tags,
...event.tags,
}
event.extra = {
...appErrorAnnotations?.extras,
...errorAnnotations.extras,
...event.extra,
}
return event
},
})
setGlobalErrorReporter((error) => Sentry.captureException(error))