(event)
| 22 | includeServerName: false, |
| 23 | sendDefaultPii: false, |
| 24 | beforeSend(event) { |
| 25 | return scrubErrorEventForLocalPii(event); |
| 26 | }, |
| 27 | // Do not send console outputs to Sentry to avoid sending PII. |
| 28 | integrations: (defaults) => { |
| 29 | return defaults.filter((integration) => integration.name !== 'Console'); |
nothing calls this directly
no test coverage detected