diff options
Diffstat (limited to 'app.json')
-rw-r--r-- | app.json | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/app.json b/app.json new file mode 100644 index 0000000..bbbd9fe --- /dev/null +++ b/app.json @@ -0,0 +1,42 @@ +{ + "expo": { + "name": "client", + "slug": "client", + "version": "1.0.0", + "orientation": "portrait", + "icon": "./assets/images/icon.png", + "scheme": "client", + "userInterfaceStyle": "automatic", + "newArchEnabled": true, + "ios": { + "supportsTablet": true + }, + "android": { + "adaptiveIcon": { + "foregroundImage": "./assets/images/adaptive-icon.png", + "backgroundColor": "#ffffff" + }, + "edgeToEdgeEnabled": true + }, + "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 + } + } +} |