You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"comment": "Removed child messaging proxying by default to avoid security issues. If an app still needs this pattern, it can be activated through the feature flag function `activateChildProxyingCommunication` which enables child proxying for that app.",
// All build feature flags are defined inside this object. Any build feature flag must have its own unique getter and setter function. This pattern allows for client apps to treeshake unused code and avoid including code guarded by this feature flags in the final bundle. If this property isn't desired, use the below runtime feature flags object.
2
+
constbuildFeatureFlags={
3
+
childProxyingCommunication: false,
4
+
};
5
+
6
+
/**
7
+
* This function enables child proxying communication for apps that still needs it.
8
+
*
9
+
* @deprecated Child proxying is considered an insecure feature and will be removed in future releases.
* Feature flags to activate or deactivate certain features at runtime for an app.
35
+
*/
36
+
exportinterfaceRuntimeFeatureFlags{
37
+
/**
38
+
* Disables origin validation for responses to child windows. When enabled, this flag bypasses security checks that verify the origin of child window that receives the response.
0 commit comments