-
Notifications
You must be signed in to change notification settings - Fork 202
/
app.json
37 lines (37 loc) · 835 Bytes
/
app.json
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
{
"pages": [
"pages/index/index",
"pages/logs/logs",
"pages/2048/2048"
],
"window": {
"navigationBarBackgroundColor": "#333",
"navigationBarTitleText": "2048小游戏"
},
"tabBar": {
"color": "#353535",
"selectedColor": "#3cc51f",
"borderStyle": "black",
"backgroundColor": "#ffffff",
"list": [
{
"pagePath": "pages/index/index",
"text": "游戏",
"iconPath": "./assets/diamond.png",
"selectedIconPath": "./assets/diamond.png"
},
{
"pagePath": "pages/logs/logs",
"text": "日志",
"iconPath": "./assets/star.png",
"selectedIconPath": "./assets/star.png"
}
]
},
"networkTimeout": {
"request": 10000,
"downloadFile": 10000
},
"debug": false,
"sitemapLocation": "sitemap.json"
}