vaulterm/frontend/app.config.ts

43 lines
934 B
TypeScript
Raw Normal View History

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