import { ExpoConfig } from "expo/config"; // Expo app configuration (PRD ยง8). iOS-first for Phase 1. const config: ExpoConfig = { name: "CardClaws", slug: "cardclaws", scheme: "cardclaws", version: "0.1.0", orientation: "portrait", userInterfaceStyle: "automatic", ios: { bundleIdentifier: "com.cardclaws.app", supportsTablet: false, }, android: { package: "com.cardclaws.app", }, plugins: ["expo-router"], experiments: { typedRoutes: true, }, extra: { apiBase: process.env.EXPO_PUBLIC_API_BASE ?? "http://localhost:8080", }, }; export default config;