Files
memind/miniapp/app.json
john 57a60d41d7 fix(miniapp): persist session token for WeChat login
Return sessionToken from login endpoints and store it client-side because
wx.request cannot rely on Set-Cookie. Also fix multi-cookie parsing,
start on login page, and guard chat rendering fields.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-07-11 13:05:44 +08:00

37 lines
771 B
JSON

{
"pages": [
"pages/login/index",
"pages/chat/index",
"pages/sessions/index",
"pages/space/index",
"pages/webview/index"
],
"window": {
"navigationBarTitleText": "TKMind",
"navigationBarBackgroundColor": "#101820",
"navigationBarTextStyle": "white",
"backgroundColor": "#f5f7fb"
},
"tabBar": {
"color": "#64748b",
"selectedColor": "#0f766e",
"backgroundColor": "#ffffff",
"borderStyle": "black",
"list": [
{
"pagePath": "pages/chat/index",
"text": "聊天"
},
{
"pagePath": "pages/sessions/index",
"text": "会话"
},
{
"pagePath": "pages/space/index",
"text": "页面"
}
]
},
"sitemapLocation": "sitemap.json"
}