config.js 769 B

1234567891011121314151617181920212223242526272829303132333435
  1. // 自定义配置,参考 ./default/setting.config.js,需要自定义的属性在这里配置即可
  2. module.exports = {
  3. theme: {
  4. color: '#2A55E5',
  5. mode: 'light',
  6. success: '#52c41a',
  7. warning: '#faad14',
  8. error: '#f5222f'
  9. },
  10. multiPage: true,
  11. animate: {
  12. disabled: true,
  13. name: 'lightSpeed',
  14. direction: 'left'
  15. }
  16. }
  17. // // 自定义配置,参考 ./default/setting.config.js,需要自定义的属性在这里配置即可
  18. // module.exports = {
  19. // theme: {
  20. // color: '#fa541c',
  21. // mode: 'light',
  22. // success: '#52c41a',
  23. // warning: '#faad14',
  24. // error: '#f5222f'
  25. // },
  26. // multiPage: true,
  27. // animate: {
  28. // disabled: true,
  29. // name: 'lightSpeed',
  30. // direction: 'left'
  31. // }
  32. // }