app.json 612 B

123456789101112131415161718192021222324252627
  1. {
  2. "pages": [
  3. "pages/index/index",
  4. "pages/login/index"
  5. ],
  6. "window": {
  7. "backgroundColor": "#FFFFFF",
  8. "navigationBarBackgroundColor": "#ffffff",
  9. "navigationBarTitleText": "墨时记",
  10. "navigationBarTextStyle": "black",
  11. "navigationStyle": "custom"
  12. },
  13. "style": "v2",
  14. "sitemapLocation": "sitemap.json",
  15. "useExtendedLib": {
  16. "weui": true
  17. },
  18. "cloud": true,
  19. "permission": {
  20. "scope.userLocation": {
  21. "desc": "你的位置信息将用于小程序位置接口的效果展示"
  22. }
  23. },
  24. "usingComponents": {
  25. "iconfont": "/components/iconfont/iconfont"
  26. }
  27. }