-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.config.js
More file actions
64 lines (56 loc) · 1.21 KB
/
app.config.js
File metadata and controls
64 lines (56 loc) · 1.21 KB
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
55
56
57
58
59
60
61
62
63
64
export default {
expo: {
name: "Routine Master",
slug: "Frontend",
version: "1.0.0",
orientation: "portrait",
// 앱 아이콘
icon: "./src/assets/icon.png",
scheme: "frontend",
userInterfaceStyle: "automatic",
newArchEnabled: true,
ios: {
supportsTablet: true,
},
android: {
adaptiveIcon: {
foregroundImage: "./src/assets/icon.png",
backgroundImage: "./src/assets/icon.png",
backgroundColor: "#E6F4FE",
},
edgeToEdgeEnabled: true,
predictiveBackGestureEnabled: false,
},
web: {
output: "static",
favicon: "./assets/icon.png",
},
plugins: [
"expo-router",
[
"expo-splash-screen",
{
image: "./src/assets/splash.png",
imageWidth: 200,
resizeMode: "contain",
backgroundColor: "#ffffff",
dark: {
backgroundColor: "#000000",
},
},
],
"expo-web-browser",
"expo-video",
],
experiments: {
typedRoutes: true,
reactCompiler: true,
},
extra: {
router: {},
eas: {
projectId: "d3e0e760-ab46-4ec0-8f9e-b49e987781b3",
},
},
},
};