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