From 205025bcea7d89ff6642e5e6fd3704752928abca Mon Sep 17 00:00:00 2001 From: Kevin Liu Date: Tue, 23 Jul 2024 11:35:28 -0400 Subject: [PATCH] =?UTF-8?q?feat(performance):=20enable=20long=20animation?= =?UTF-8?q?=20frame=20support=20for=20internal=20t=E2=80=A6=20(#74637)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Enables long animation frame support in the browser SDK for internal testing. See https://github.com/getsentry/sentry-javascript/issues/11719 for more information. --- static/app/bootstrap/initializeSdk.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/static/app/bootstrap/initializeSdk.tsx b/static/app/bootstrap/initializeSdk.tsx index c5a1265e8aa22c..a1c09c2dc1d49f 100644 --- a/static/app/bootstrap/initializeSdk.tsx +++ b/static/app/bootstrap/initializeSdk.tsx @@ -58,6 +58,7 @@ function getSentryIntegrations(routes?: Function) { history: browserHistory as any, routes: typeof routes === 'function' ? createRoutes(routes()) : [], match, + enableLongAnimationFrame: true, _experiments: { enableInteractions: false, },