()
| 53 | * the renderer never initializes Sentry. |
| 54 | */ |
| 55 | export const getCrashReportingConfig = () => |
| 56 | errorReportingEnabled |
| 57 | ? { |
| 58 | dsn: sentryDsn, |
| 59 | release: releaseTag(), |
| 60 | environment: environmentTag(), |
| 61 | runId, |
| 62 | } |
| 63 | : null; |
| 64 | |
| 65 | /** Env vars handed to the sidecar so its process reports under the same id. */ |
| 66 | export const sidecarCrashReportingEnv = (): Record<string, string> => |
no test coverage detected