From 3147730f1e406327add091c1b892c4da1df5984c Mon Sep 17 00:00:00 2001 From: Abhijeet Prasad Date: Mon, 20 Mar 2023 12:34:50 +0100 Subject: [PATCH] chore(sveltekit): Use dummy DSN var in README instructions --- packages/sveltekit/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/sveltekit/README.md b/packages/sveltekit/README.md index b1a8dbc3e943..48a53c1abaae 100644 --- a/packages/sveltekit/README.md +++ b/packages/sveltekit/README.md @@ -54,7 +54,7 @@ Although the SDK is not yet stable, you're more than welcome to give it a try an import * as Sentry from '@sentry/sveltekit'; Sentry.init({ - dsn: 'https://27dbca58093d401f9b18f88c40ec718f@o447951.ingest.sentry.io/4504796902588416', + dsn: '__DSN__', // For instance, initialize Session Replay: replaysSessionSampleRate: 0.1, @@ -81,7 +81,7 @@ Although the SDK is not yet stable, you're more than welcome to give it a try an import * as Sentry from '@sentry/sveltekit'; Sentry.init({ - dsn: 'https://27dbca58093d401f9b18f88c40ec718f@o447951.ingest.sentry.io/4504796902588416', + dsn: '__DSN__', }); ```