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 121f66c commit 8e9ef54Copy full SHA for 8e9ef54
packages/e2e-tests/test-applications/sveltekit-2/src/hooks.server.ts
@@ -1,9 +1,9 @@
1
-import { env } from '$env/dynamic/private';
+import { E2E_TEST_DSN } from '$env/static/private';
2
import * as Sentry from '@sentry/sveltekit';
3
4
Sentry.init({
5
environment: 'qa', // dynamic sampling bias to keep transactions
6
- dsn: env.E2E_TEST_DSN,
+ dsn: E2E_TEST_DSN,
7
debug: true,
8
tunnel: `http://localhost:3031/`, // proxy server
9
tracesSampleRate: 1.0,
0 commit comments