You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

44 lines
647 B

2 years ago
  1. 'use strict';
  2. const settings = {
  3. /**
  4. * @type {string}
  5. * @description 项目名称
  6. */
  7. title: '',
  8. /**
  9. * @type {string}
  10. * @description 系统版本
  11. */
  12. version: 'v1.0.0',
  13. /**
  14. * @type {boolean}
  15. * @description 是否关闭eslint语法检测
  16. */
  17. isCloseEslint: false,
  18. /**
  19. * @type {boolean} true | false
  20. * @description 开发环境与生产环境
  21. */
  22. isDebug: false,
  23. /**
  24. * @type {boolean} true | false
  25. * @description 是否加载模拟数据
  26. */
  27. isTestData: false,
  28. /**
  29. * @type {number}
  30. * @description 开发环境端口号
  31. */
  32. port: 8057,
  33. }
  34. module.exports = settings;