-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
32 lines (32 loc) · 942 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
{
"pages": [
"pages/index/index",
"pages/error/error",
"pages/webview/webview"
],
"window": {
"navigationBarBackgroundColor": "@navigationBarBackgroundColor",
"navigationBarTextStyle": "@navigationBarTextStyle",
"navigationBarTitleText": "Miniprogram"
},
"tabBar": {
"backgroundColor":"@tabBackgroundColor",
"color":"@tabColor",
"borderStyle":"@tabBorderStyle",
"selectedColor": "#1d6ac6",
"list": [
{
"pagePath": "pages/index/index",
"text": "导航",
"iconPath": "@tabImageApp",
"selectedIconPath": "static/images/nav/application-active.png"
}
]
},
"style": "v2",
"sitemapLocation": "sitemap.json",
"lazyCodeLoading": "requiredComponents",
"resizable": true,
"darkmode": false,
"themeLocation":"theme.json"
}