feat: Enable Sentry's extra error data integration

This commit is contained in:
Jesse Wierzbinski 2024-07-27 22:44:21 +02:00
parent 3baac85cf7
commit 0194b471a8
No known key found for this signature in database

View file

@ -16,6 +16,7 @@ const sentryInstance =
release: Bun.env.GIT_COMMIT
? `${pkg.version}-${Bun.env.GIT_COMMIT}`
: pkg.version,
integrations: [Sentry.extraErrorDataIntegration()],
});
export const sentry = sentryInstance || undefined;