config.local.js 490 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. 'use strict';
  2. /**
  3. * 开发环境配置,覆盖 config.default.js
  4. */
  5. module.exports = (appInfo) => {
  6. const config = {};
  7. /**
  8. * 开发者工具
  9. */
  10. config.openDevTools = true;
  11. /**
  12. * 应用程序顶部菜单
  13. */
  14. config.openAppMenu = false;
  15. /**
  16. * jobs
  17. */
  18. config.jobs = {
  19. messageLog: true
  20. };
  21. /**
  22. * 远程模式-web地址
  23. */
  24. config.remoteUrl = {
  25. enable: true,
  26. url: 'http://localhost:3000/home'
  27. };
  28. return {
  29. ...config
  30. };
  31. };