forked from fresns/client-demo-wechat
-
Notifications
You must be signed in to change notification settings - Fork 2
/
app.json
executable file
·130 lines (116 loc) · 3.47 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"pages": [
"pages/posts/index",
"pages/portal/index",
"pages/portal/about",
"pages/portal/policies",
"pages/portal/channels",
"pages/users/index",
"pages/users/list",
"pages/users/likes",
"pages/users/dislikes",
"pages/users/following",
"pages/users/blocking",
"pages/groups/index",
"pages/groups/list",
"pages/groups/likes",
"pages/groups/dislikes",
"pages/groups/following",
"pages/groups/blocking",
"pages/groups/detail",
"pages/hashtags/index",
"pages/hashtags/list",
"pages/hashtags/likes",
"pages/hashtags/dislikes",
"pages/hashtags/following",
"pages/hashtags/blocking",
"pages/hashtags/detail",
"pages/posts/list",
"pages/posts/nearby",
"pages/posts/location",
"pages/posts/likes",
"pages/posts/dislikes",
"pages/posts/following",
"pages/posts/blocking",
"pages/posts/detail",
"pages/comments/index",
"pages/comments/list",
"pages/comments/nearby",
"pages/comments/location",
"pages/comments/likes",
"pages/comments/dislikes",
"pages/comments/following",
"pages/comments/blocking",
"pages/comments/detail",
"pages/follows/all-posts",
"pages/follows/all-comments",
"pages/follows/user-posts",
"pages/follows/user-comments",
"pages/follows/group-posts",
"pages/follows/group-comments",
"pages/follows/hashtag-posts",
"pages/follows/hashtag-comments",
"pages/notifications/index",
"pages/messages/index",
"pages/messages/conversation",
"pages/search/index",
"pages/editor/draft-box",
"pages/editor/index",
"pages/account/index",
"pages/account/register",
"pages/account/login",
"pages/account/wechat-login/check-sign",
"pages/account/wechat-login/website-oauth",
"pages/account/reset-password",
"pages/account/wallet",
"pages/account/users",
"pages/account/user-extcredits",
"pages/account/settings",
"pages/account/delete-account",
"pages/profile/posts",
"pages/profile/comments",
"pages/profile/interactions/followers-you-follow",
"pages/profile/interactions/likers",
"pages/profile/interactions/dislikers",
"pages/profile/interactions/followers",
"pages/profile/interactions/blockers",
"pages/profile/likes/users",
"pages/profile/likes/groups",
"pages/profile/likes/hashtags",
"pages/profile/likes/posts",
"pages/profile/likes/comments",
"pages/profile/dislikes/users",
"pages/profile/dislikes/groups",
"pages/profile/dislikes/hashtags",
"pages/profile/dislikes/posts",
"pages/profile/dislikes/comments",
"pages/profile/following/users",
"pages/profile/following/groups",
"pages/profile/following/hashtags",
"pages/profile/following/posts",
"pages/profile/following/comments",
"pages/profile/blocking/users",
"pages/profile/blocking/groups",
"pages/profile/blocking/hashtags",
"pages/profile/blocking/posts",
"pages/profile/blocking/comments",
"pages/webview"
],
"requiredPrivateInfos": [
"chooseLocation"
],
"entryPagePath": "pages/posts/index",
"window": {
"backgroundTextStyle": "@bgTxtStyle",
"navigationBarBackgroundColor": "@navBgColor",
"navigationBarTitleText": "Fresns 官方社区",
"navigationBarTextStyle": "@navTxtStyle"
},
"darkmode": false,
"themeLocation": "theme.json",
"sitemapLocation": "sitemap.json",
"lazyCodeLoading": "requiredComponents",
"useExtendedLib": {
"weui": true
}
}