-
Notifications
You must be signed in to change notification settings - Fork 3
/
app.json
53 lines (53 loc) · 1.14 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"pages": [
"pages/home/index"
],
"subpackages": [
{
"root": "package/extend",
"name": "extendPkg",
"pages": [
"pages/auth/index",
"pages/countdown/index",
"pages/cascader/index",
"pages/poster/index",
"pages/fetch/index",
"pages/cache/index",
"pages/customer/index"
]
}
],
"preloadRule": {
"pages/home/index": {
"network": "all",
"packages": [
"extendPkg"
]
}
},
"usingComponents": {
"auth": "/components/auth/index"
},
"window": {
"navigationBarBackgroundColor": "#FFFFFF",
"navigationBarTextStyle": "black",
"navigationBarTitleText": "模板",
"backgroundColor": "#FFFFFF",
"backgroundTextStyle": "light",
"enablePullDownRefresh": false
},
"networkTimeout": {
"request": 10000,
"connectSocket": 10000,
"uploadFile": 15000,
"downloadFile": 15000
},
"navigateToMiniProgramAppIdList": [],
"permission": {
"scope.userLocation": {
"desc": "您的位置信息将用于小程序获取附近地址"
}
},
"debug": false,
"sitemapLocation": "sitemap.json"
}