settings.js 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. module.exports = {
  2. /**
  3. * @type {string}
  4. * @description Web page title
  5. */
  6. title: 'ChargEco Admin',
  7. /**
  8. * @type {string}
  9. * @description project name
  10. */
  11. projectName: 'ChargEco',
  12. company: 'Strides YTL Pte. Ltd.',
  13. defaultCountry: 'SG',
  14. defaultCalling: '65',
  15. /**
  16. * @type {string}
  17. * @description API url base service
  18. */
  19. baseUrl: '/steve',
  20. /**
  21. * @type {boolean} true | false
  22. * @description Whether show the settings right-panel
  23. */
  24. showSettings: false,
  25. /**
  26. * @type {boolean} true | false
  27. * @description Whether need tagsView
  28. */
  29. tagsView: false,
  30. /**
  31. * @type {boolean} true | false
  32. * @description Whether fix the header
  33. */
  34. fixedHeader: true,
  35. /**
  36. * @type {boolean} true | false
  37. * @description Whether show the logo in sidebar
  38. */
  39. sidebarLogo: true,
  40. /**
  41. * @type {string | array} 'production' | ['production', 'development']
  42. * @description Need show err logs component.
  43. * The default is only used in the production env
  44. * If you want to also use it in dev, you can pass ['production', 'development']
  45. */
  46. errorLog: 'production'
  47. }