We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dc391b7 commit 622a64cCopy full SHA for 622a64c
src/errors.ts
@@ -20,8 +20,10 @@ export function initSentry(dsn: string | undefined) {
20
],
21
integrations: [
22
Sentry.dedupeIntegration(),
23
- Sentry.extraErrorDataIntegration()
+ Sentry.extraErrorDataIntegration(),
24
+ Sentry.httpClientIntegration()
25
26
+ sendDefaultPii: true, // We don't actually collect or send PII, but this is required to debug HTTP headers
27
beforeSend: function (event, hint) {
28
if (!sentryInitialized) return null; // Don't send errors if we're disabled
29
0 commit comments