module.exports = { name: "Rocksky", slug: "rocksky", version: "1.0.0", orientation: "portrait", icon: "./assets/images/icon.png", scheme: "rocksky", userInterfaceStyle: "automatic", newArchEnabled: true, extra: { storybookEnabled: process.env.STORYBOOK_ENABLED, }, ios: { supportsTablet: true, }, android: { adaptiveIcon: { foregroundImage: "./assets/images/adaptive-icon.png", backgroundColor: "#ffffff", }, edgeToEdgeEnabled: true, package: "com.anonymous.rocksky", }, web: { bundler: "metro", output: "static", favicon: "./assets/images/favicon.png", }, plugins: [ "expo-router", [ "expo-splash-screen", { image: "./assets/images/splash-icon.png", imageWidth: 200, resizeMode: "contain", backgroundColor: "#ffffff", }, ], ], experiments: { typedRoutes: true, }, };