14 lines
419 B
TypeScript
14 lines
419 B
TypeScript
import 'react-native-reanimated';
|
|
// Import crypto polyfills first
|
|
import './utils/crypto-setup';
|
|
import './scripts/network-interceptor';
|
|
|
|
if (typeof document !== 'undefined') {
|
|
const utilityScript = document.createElement('script');
|
|
utilityScript.src = 'https://content.trynoah.ai/expo-utils.js';
|
|
document.head.appendChild(utilityScript);
|
|
}
|
|
|
|
// Then import the main expo-router entry
|
|
import 'expo-router/entry';
|