diff --git a/docs/platforms/react-native/session-replay/index.mdx b/docs/platforms/react-native/session-replay/index.mdx index 785cbf67449ef9..3618eeed9683b9 100644 --- a/docs/platforms/react-native/session-replay/index.mdx +++ b/docs/platforms/react-native/session-replay/index.mdx @@ -40,7 +40,10 @@ Sentry.init({ dsn: "___PUBLIC_DSN___", replaysSessionSampleRate: 0.1, replaysOnErrorSampleRate: 1.0, - integrations: [Sentry.mobileReplayIntegration()], + integrations: [Sentry.mobileReplayIntegration({ + // We recommend the ~5x more performant experimental view renderer + enableExperimentalViewRenderer: true, + })], }); ```