1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
| 'use strict';
|
| /**
| * 生产环境配置,覆盖 config.default.js
| */
| module.exports = (appInfo) => {
| const config = {};
|
| /**
| * 开发者工具
| */
| config.openDevTools = false;
|
| /**
| * 应用程序顶部菜单
| */
| config.openAppMenu = false;
|
| /**
| * jobs
| */
| config.jobs = {
| messageLog: false
| };
|
| return {
| ...config
| };
| };
|
|