app.json 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. {
  2. "pages": [
  3. "page/home/index"
  4. ],
  5. "subpackages": [
  6. {
  7. "root": "packageComponent",
  8. "pages": []
  9. }
  10. ],
  11. "preloadRule": {
  12. "page/home/index": {
  13. "network": "all",
  14. "packages": [
  15. ]
  16. }
  17. },
  18. "window": {
  19. "navigationBarTextStyle": "@navigationBarTextStyle",
  20. "navigationBarTitleText": "演示",
  21. "navigationBarBackgroundColor": "@navigationBarBackgroundColor",
  22. "backgroundColor": "@backgroundColor"
  23. },
  24. "tabBar": {
  25. "color": "@tabBarColor",
  26. "selectedColor": "@tabBarSelectedColor",
  27. "borderStyle": "@tabBarBorderStyle",
  28. "backgroundColor": "@tabBarBackgroundColor",
  29. "list": [
  30. {
  31. "pagePath": "page/home/index",
  32. "text": "组件"
  33. },
  34. {
  35. "pagePath": "page/home/index",
  36. "text": "组件"
  37. }
  38. ]
  39. },
  40. "networkTimeout": {
  41. "request": 10000,
  42. "connectSocket": 10000,
  43. "uploadFile": 10000,
  44. "downloadFile": 10000
  45. },
  46. "workers": "workers",
  47. "debug": false,
  48. "style": "v2",
  49. "permission": {
  50. "scope.userLocation": {
  51. "desc": "你的位置信息将用于小程序位置接口的效果展示"
  52. }
  53. },
  54. "cloud": true,
  55. "sitemapLocation": "sitemap.json",
  56. "themeLocation": "demo.theme.json",
  57. "darkmode": true,
  58. "resizable": true,
  59. "useExtendedLib": {
  60. "weui": true
  61. },
  62. "frameset": true,
  63. "requiredBackgroundModes": [
  64. "audio",
  65. "location"
  66. ],
  67. "embeddedAppIdList": [
  68. "wxfdcee92a299bcaf1"
  69. ],
  70. "lazyCodeLoading": "requiredComponents"
  71. }