小程序根目錄下的 app.json
文件用來對微信小程序進行全局配置。文件內容爲一個 JSON 對象,總共有15個屬性能夠配置,以下:json
經常使用的配置項包括頁面文件的路徑、窗口表現、設置網絡超時時間、設置多 tab 等。小程序
{ "pages": ["pages/index/index", "pages/logs/index"], "window": { "navigationBarTitleText": "Demo" }, "tabBar": { "list": [ { "pagePath": "pages/index/index", "text": "首頁" }, { "pagePath": "pages/logs/logs", "text": "日誌" } ] }, "networkTimeout": { "request": 10000, "downloadFile": 10000 }, "debug": true, "navigateToMiniProgramAppIdList": ["wxe5f52902cf4de896"] }