Disable Fusebox in prod builds (temp) (#44664)

Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/44664

Changelog: [Internal]

Reviewed By: hoxyq

Differential Revision: D57737342

fbshipit-source-id: 85bff2d2810e666a97b79b5d1fe598b6f8b68c68
This commit is contained in:
Alex Hunt
2024-05-24 10:31:18 -07:00
committed by Facebook GitHub Bot
parent c13790ff1d
commit 06461c4ab5
@@ -47,8 +47,10 @@ const InspectorFlags::Values& InspectorFlags::loadFlagsAndAssertUnchanged()
.enableModernCDPRegistry =
#ifdef REACT_NATIVE_FORCE_ENABLE_FUSEBOX
true,
#else
#elif defined(HERMES_ENABLE_DEBUGGER)
ReactNativeFeatureFlags::inspectorEnableModernCDPRegistry(),
#else
false,
#endif
};