Skip to content

Commit f38aaeb

Browse files
author
Luca Forstner
authored
Fix router transition start snippet (#13372)
1 parent aeb0b38 commit f38aaeb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/platforms/javascript/guides/nextjs/manual-setup.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ Create three files in your application's root directory: `sentry.server.config.(
9494
slightly different, so copy them carefully.
9595
</Alert>
9696

97-
```javascript {tabTitle:Client} {filename:instrumentation-client.(js|ts)} {"onboardingOptions": {"performance": "5-10, 26-28", "session-replay": "11-19"}}
97+
```javascript {tabTitle:Client} {filename:instrumentation-client.(js|ts)} {"onboardingOptions": {"performance": "5-10", "session-replay": "11-19"}}
9898
import * as Sentry from "@sentry/nextjs";
9999

100100
Sentry.init({
@@ -107,14 +107,14 @@ Sentry.init({
107107
tracesSampleRate: 1.0,
108108
// Replay may only be enabled for the client-side
109109
integrations: [Sentry.replayIntegration()],
110-
110+
111111
// Capture Replay for 10% of all sessions,
112112
// plus for 100% of sessions with an error
113113
// Learn more at
114114
// https://docs.sentry.io/platforms/javascript/session-replay/configuration/#general-integration-configuration
115115
replaysSessionSampleRate: 0.1,
116116
replaysOnErrorSampleRate: 1.0,
117-
117+
118118
// Note: if you want to override the automatic release value, do not set a
119119
// `release` value here - use the environment variable `SENTRY_RELEASE`, so
120120
// that it will also get attached to your source maps

0 commit comments

Comments
 (0)