您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

12345678910111213141516171819202122232425
  1. import { defineConfig } from '@umijs/max';
  2. import routes from './routes';
  3. export default defineConfig({
  4. dva: {},
  5. antd: {},
  6. access: {
  7. },
  8. model: {},
  9. initialState: {
  10. name: ''
  11. },
  12. request: {},
  13. layout: {
  14. title: '菊城人才网',
  15. logo: '/images/logo_1.jpg',
  16. token: {
  17. colorPrimary: '#4FBE70'
  18. },
  19. },
  20. routes: routes,
  21. hash: true,
  22. npmClient: 'npm',
  23. });