···33import {LogBox} from 'react-native'
44LogBox.ignoreLogs(['Require cycle:']) // suppress require-cycle warnings, it's fine
5566-import 'platform/polyfills'
66+import '#/platform/polyfills'
77import {registerRootComponent} from 'expo'
88+import {doPolyfill} from '#/lib/api/api-polyfill'
99+doPolyfill()
81099-import App from './src/App'
1111+import App from '#/App'
10121113// registerRootComponent calls AppRegistry.registerComponent('main', () => App);
1214// It also ensures that whether you load the app in Expo Go or in a native build,
+5-2
index.web.js
···11-import 'platform/polyfills'
11+import '#/platform/polyfills'
22import {registerRootComponent} from 'expo'
33-import App from './src/App'
33+import {doPolyfill} from '#/lib/api/api-polyfill'
44+import App from '#/App'
55+66+doPolyfill()
47registerRootComponent(App)