Skip to content

Commit 4db5c33

Browse files
committed
hardcode for angular
1 parent 956f1e2 commit 4db5c33

File tree

2 files changed

+2
-2
lines changed
  • dev-packages/e2e-tests/test-applications

2 files changed

+2
-2
lines changed

dev-packages/e2e-tests/test-applications/angular-17/src/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ import { appConfig } from './app/app.config';
55
import * as Sentry from '@sentry/angular';
66

77
Sentry.init({
8+
// Cannot use process.env here, so we hardcode the DSN
89
dsn: 'https://3b6c388182fb435097f41d181be2b2ba@o4504321058471936.ingest.sentry.io/4504321066008576',
910
tracesSampleRate: 1.0,
1011
integrations: [Sentry.browserTracingIntegration({})],
1112
tunnel: `http://localhost:3031/`, // proxy server
12-
debug: !!process.env.DEBUG,
1313
});
1414

1515
bootstrapApplication(AppComponent, appConfig).catch(err => console.error(err));

dev-packages/e2e-tests/test-applications/angular-18/src/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ import { appConfig } from './app/app.config';
55
import * as Sentry from '@sentry/angular';
66

77
Sentry.init({
8+
// Cannot use process.env here, so we hardcode the DSN
89
dsn: 'https://3b6c388182fb435097f41d181be2b2ba@o4504321058471936.ingest.sentry.io/4504321066008576',
910
tracesSampleRate: 1.0,
1011
integrations: [Sentry.browserTracingIntegration({})],
1112
tunnel: `http://localhost:3031/`, // proxy server
12-
debug: !!process.env.DEBUG,
1313
});
1414

1515
bootstrapApplication(AppComponent, appConfig).catch(err => console.error(err));

0 commit comments

Comments
 (0)