We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e9ea037 commit d710314Copy full SHA for d710314
dev-packages/e2e-tests/test-applications/nextjs-15/instrumentation-client.ts
@@ -2,11 +2,10 @@ import * as Sentry from '@sentry/nextjs';
2
3
Sentry.init({
4
environment: 'qa', // dynamic sampling bias to keep transactions
5
- dsn: 'https://username@domain/123',
+ dsn: process.env.NEXT_PUBLIC_E2E_TEST_DSN,
6
tunnel: `http://localhost:3031/`, // proxy server
7
tracesSampleRate: 1.0,
8
sendDefaultPii: true,
9
- debug: true,
10
});
11
12
export const onRouterTransitionStart = Sentry.captureRouterTransitionStart;
0 commit comments