mirror of
https://github.com/getpaseo/paseo.git
synced 2026-07-29 12:01:31 +00:00
- Add crypto polyfill for Expo - Update daemon client and websocket server - Simplify codex agent tests
8 lines
293 B
TypeScript
8 lines
293 B
TypeScript
// Polyfill crypto.randomUUID for React Native before any other imports
|
|
import { polyfillCrypto } from "./src/polyfills/crypto";
|
|
polyfillCrypto();
|
|
|
|
// Configure Unistyles before Expo Router pulls in any components using StyleSheet.
|
|
import "./src/styles/unistyles";
|
|
import "expo-router/entry";
|