forked from EvanBacon/expo-router-instagram-layout
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.config.js
54 lines (52 loc) · 1006 Bytes
/
app.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
export default ({ config }) => ({
...config,
android: {
adaptiveIcon: {
backgroundColor: '#FFFFFF',
foregroundImage: './assets/adaptive-icon.png'
}
},
assetBundlePatterns: ['**/*'],
experiments: {
tsconfigPaths: true,
typedRoutes: true
},
extra: {
storybookEnabled: process.env.STORYBOOK_ENABLED
},
icon: './assets/icon.png',
ios: {
supportsTablet: true
},
name: 'instagram-layout',
orientation: 'portrait',
plugins: [
'expo-router',
'expo-localization',
[
'expo-build-properties',
{
ios: {
useFrameworks: 'static'
}
}
]
],
scheme: 'acme',
slug: 'instagram-layout',
splash: {
backgroundColor: '#ffffff',
image: './assets/splash.png',
resizeMode: 'contain'
},
updates: {
fallbackToCacheTimeout: 0
},
userInterfaceStyle: 'automatic',
version: '1.0.0',
web: {
bundler: 'metro',
favicon: './assets/favicon.png',
output: 'static'
}
})