| 1234567891011121314151617181920212223242526272829303132333435 |
- // 自定义配置,参考 ./default/setting.config.js,需要自定义的属性在这里配置即可
- module.exports = {
- theme: {
- color: '#2A55E5',
- mode: 'light',
- success: '#52c41a',
- warning: '#faad14',
- error: '#f5222f'
- },
- multiPage: true,
- animate: {
- disabled: true,
- name: 'lightSpeed',
- direction: 'left'
- }
- }
- // // 自定义配置,参考 ./default/setting.config.js,需要自定义的属性在这里配置即可
- // module.exports = {
- // theme: {
- // color: '#fa541c',
- // mode: 'light',
- // success: '#52c41a',
- // warning: '#faad14',
- // error: '#f5222f'
- // },
- // multiPage: true,
- // animate: {
- // disabled: true,
- // name: 'lightSpeed',
- // direction: 'left'
- // }
- // }
-
-
|