mirror of
https://github.com/getpaseo/paseo.git
synced 2026-07-29 12:01:31 +00:00
- Add .claude schedule tasks to .gitignore - Add screen-orientation polyfill for Expo web - Refactor agent provider launch config into shared utility - Update desktop runtime manager with improved binary management - Update desktop release workflow
19 lines
721 B
TypeScript
19 lines
721 B
TypeScript
// Polyfill crypto.randomUUID for React Native before any other imports
|
|
import { polyfillCrypto } from "./src/polyfills/crypto";
|
|
polyfillCrypto();
|
|
|
|
// Polyfill screen.orientation for WebKitGTK (Tauri Linux) which lacks the API
|
|
import { polyfillScreenOrientation } from "./src/polyfills/screen-orientation";
|
|
polyfillScreenOrientation();
|
|
|
|
// Bridge console.log/warn/error to Tauri's log plugin so JS output appears in app.log
|
|
if ((globalThis as { __TAURI__?: unknown }).__TAURI__) {
|
|
import("@tauri-apps/plugin-log").then(({ attachConsole }) => {
|
|
attachConsole();
|
|
});
|
|
}
|
|
|
|
// Configure Unistyles before Expo Router pulls in any components using StyleSheet.
|
|
import "./src/styles/unistyles";
|
|
import "expo-router/entry";
|