import { ExpoConfig, ConfigContext } from "expo/config"; export default ({ config }: ConfigContext): ExpoConfig => ({ ...config, name: "Vaulterm", slug: "vaulterm", version: "1.0.0", orientation: "portrait", icon: "./assets/images/icon.png", scheme: "vaulterm", userInterfaceStyle: "automatic", newArchEnabled: true, splash: { image: "./assets/images/splash.png", resizeMode: "contain", backgroundColor: "#ffffff", }, ios: { supportsTablet: true, }, android: { package: "sh.rul.vaulterm", adaptiveIcon: { foregroundImage: "./assets/images/adaptive-icon.png", backgroundColor: "#ffffff", }, }, web: { bundler: "metro", output: "static", favicon: "./assets/images/favicon.png", }, plugins: ["expo-router"], experiments: { typedRoutes: true, }, extra: { eas: { projectId: "3e0112c1-f0ed-423c-b5cf-95633f23f6dc", }, }, });