app.json 915 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "pages": [
  3. "pages/index/index",
  4. "pages/login/index",
  5. "pages/register/index"
  6. ],
  7. "subPackages": [
  8. {
  9. "root": "pagesHome",
  10. "independent": true,
  11. "pages": [
  12. "home/index"
  13. ]
  14. },
  15. {
  16. "root": "pagesCommon",
  17. "independent": true,
  18. "pages": [
  19. "test/index"
  20. ]
  21. }
  22. ],
  23. "lazyCodeLoading": "requiredComponents",
  24. "window": {
  25. "backgroundTextStyle": "light",
  26. "navigationBarBackgroundColor": "#f0f0f0",
  27. "navigationBarTitleText": "小程序模板",
  28. "navigationBarTextStyle": "black"
  29. },
  30. "style": "v2",
  31. "sitemapLocation": "sitemap.json",
  32. "permission": {
  33. "scope.userLocation": {
  34. "desc": "你的位置信息将用于小程序位置接口的效果展示"
  35. }
  36. }
  37. }