小程序代码查看器
ai4444 带你拆解一个最小小程序的结构
app.json
16 行
| 1 | { |
| 2 | "pages": [ |
| 3 | "pages/index/index", |
| 4 | "pages/logs/logs" |
| 5 | ], |
| 6 | "window": { |
| 7 | "navigationBarTextStyle": "black", |
| 8 | "navigationBarTitleText": "Weixin", |
| 9 | "navigationBarBackgroundColor": "#ffffff" |
| 10 | }, |
| 11 | "style": "v2", |
| 12 | "componentFramework": "glass-easel", |
| 13 | "sitemapLocation": "sitemap.json", |
| 14 | "lazyCodeLoading": "requiredComponents" |
| 15 | } |
| 16 |