Add SENTRY_TUNNEL option (#4298)

Co-authored-by: Tom Moor <tom.moor@gmail.com>
This commit is contained in:
Kedas
2022-10-15 15:12:38 -07:00
committed by GitHub
parent 7bac696eaf
commit 97a50b20da
6 changed files with 21 additions and 4 deletions

View File

@@ -322,6 +322,13 @@ export class Environment {
@IsOptional()
public SENTRY_DSN = this.toOptionalString(process.env.SENTRY_DSN);
/**
* Sentry tunnel URL for bypassing ad blockers
*/
@IsUrl()
@IsOptional()
public SENTRY_TUNNEL = this.toOptionalString(process.env.SENTRY_TUNNEL);
/**
* A release SHA or other identifier for Sentry.
*/