You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
798 B

// When users dangerously import a file inside of react-native, it breaks the web alias.
// This is one of the most common, and cryptic web errors that users encounter.
// This conditional side-effect provides a more helpful error message for debugging.
// Use a wrapper `__DEV__` to remove this entire block in production.
if (__DEV__) {
if (
// Skip mocking if someone is shimming this value out.
!('__fbBatchedBridgeConfig' in global)) {
Object.defineProperty(global, '__fbBatchedBridgeConfig', {
get() {
throw new Error("Your web project is importing a module from 'react-native' instead of 'react-native-web'. Learn more: https://expo.fyi/fb-batched-bridge-config-web");
},
});
}
}
//# sourceMappingURL=Expo.fx.web.js.map