| 123456789101112131415161718192021222324252627282930313233343536373839 |
- 'use strict';
- /**
- * 开发环境配置,覆盖 config.default.js
- */
- module.exports = (appInfo) => {
- const config = {};
- /**
- * 开发者工具
- */
- config.openDevTools = true;
- /**
- * 应用程序顶部菜单
- */
- config.openAppMenu = true;
- /**
- * jobs
- */
- config.jobs = {
- messageLog: true
- };
- /**
- * 远程模式-web地址
- */
- config.remoteUrl = {
- enable: true,
- url: 'http://localhost:3000/home'
- };
- return {
- ...config
- };
- };
|