generated from LeeJim/miniprogram-starter
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathapp.json
75 lines (75 loc) · 1.46 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"pages": ["pages/home/index", "pages/message/index", "pages/my/index"],
"usingComponents": {
"t-toast": "tdesign-miniprogram/toast/toast"
},
"subpackages": [
{
"root": "pages/search",
"name": "search",
"pages": ["index"]
},
{
"root": "pages/my/info-edit",
"name": "edit",
"pages": ["index"]
},
{
"root": "pages/chat",
"name": "chat",
"pages": ["index"]
},
{
"root": "pages/login",
"name": "login",
"pages": ["login"]
},
{
"root": "pages/loginCode",
"name": "loginCode",
"pages": ["loginCode"]
},
{
"root": "pages/dataCenter",
"name": "dataCenter",
"pages": ["index"]
},
{
"root": "pages/setting",
"name": "setting",
"pages": ["index"]
},
{
"root": "pages/release",
"name": "release",
"pages": ["index"]
}
],
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#fff",
"navigationBarTitleText": "Weixin",
"navigationBarTextStyle": "black"
},
"tabBar": {
"custom": true,
"list": [
{
"pagePath": "pages/home/index",
"text": "首页"
},
{
"pagePath": "pages/message/index",
"text": "消息"
},
{
"pagePath": "pages/my/index",
"text": "我的"
}
]
},
"resolveAlias": {
"~/*": "/*"
},
"sitemapLocation": "sitemap.json"
}