1"use strict"; 2Object.defineProperty(exports, "__esModule", { value: true }); 3if ( 4// Only during development. 5process.env.NODE_ENV !== 'production' && 6 // Disable for SSR 7 typeof window !== 'undefined' && 8 // Disable for non-metro runtimes 9 // NOTE(EvanBacon): This can probably be removed in favor of `expo/metro-config` injecting this file. 10 global.__METRO_GLOBAL_PREFIX__ != null) { 11 require('./setupFastRefresh'); 12 require('./setupHMR'); 13 require('./messageSocket'); 14} 15//# sourceMappingURL=effects.js.map