323c566597
部署到群晖 / deploy (push) Successful in 36s
启用后开发者工具基础库 3.10.3 报错 Component is not found in path "wx://not-found" 导致首页白屏。这是 lazyCodeLoading 跟某些基础库版本的已知兼容问题。 回滚 app.json,等基础库版本升级后再考虑开启。 代码质量扫描里"启用组件按需注入"会标记"未通过",但不影响审核。 Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
41 lines
934 B
JSON
41 lines
934 B
JSON
{
|
|
"pages": [
|
|
"pages/index/index",
|
|
"pages/person-detail/person-detail",
|
|
"pages/add-person/add-person",
|
|
"pages/add-anniversary/add-anniversary",
|
|
"pages/calendar/calendar",
|
|
"pages/settings/settings"
|
|
],
|
|
"window": {
|
|
"backgroundTextStyle": "light",
|
|
"navigationBarBackgroundColor": "#fff",
|
|
"navigationBarTitleText": "生日提醒",
|
|
"navigationBarTextStyle": "black",
|
|
"backgroundColor": "#f5f5f5"
|
|
},
|
|
"tabBar": {
|
|
"color": "#7A7E83",
|
|
"selectedColor": "#07c160",
|
|
"borderStyle": "black",
|
|
"backgroundColor": "#ffffff",
|
|
"list": [
|
|
{
|
|
"pagePath": "pages/index/index",
|
|
"text": "🏠 首页"
|
|
},
|
|
{
|
|
"pagePath": "pages/calendar/calendar",
|
|
"text": "📅 日历"
|
|
},
|
|
{
|
|
"pagePath": "pages/settings/settings",
|
|
"text": "⚙️ 设置"
|
|
}
|
|
]
|
|
},
|
|
"style": "v2",
|
|
"sitemapLocation": "sitemap.json"
|
|
}
|
|
|