···11+/**
22+ * Mobile app env. Use EXPO_PUBLIC_API_URL to point at the backend.
33+ * Defaults to localhost:3001 (override for device: use your machine IP).
44+ */
55+const API_URL = process.env.EXPO_PUBLIC_API_URL ?? 'http://localhost:3001';
66+77+export const env = {
88+ API_URL,
99+} as const;
+1
apps/mobile/src/navigation/index.ts
···11+export type { RootStackParamList } from './types';