mirror of
https://github.com/getpaseo/paseo.git
synced 2026-07-29 12:01:31 +00:00
12 lines
484 B
TypeScript
12 lines
484 B
TypeScript
// Polyfill crypto.randomUUID for React Native before any other imports
|
|
import { polyfillCrypto } from "./src/polyfills/crypto";
|
|
polyfillCrypto();
|
|
|
|
// Polyfill screen.orientation for WebKitGTK desktop runtimes that lack the API.
|
|
import { polyfillScreenOrientation } from "./src/polyfills/screen-orientation";
|
|
polyfillScreenOrientation();
|
|
|
|
// Configure Unistyles before Expo Router pulls in any components using StyleSheet.
|
|
import "./src/styles/unistyles";
|
|
import "expo-router/entry";
|