Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

config.ts 393B

123456789101112131415161718192021222324252627
  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. },
  11. request: {},
  12. layout: {
  13. title: '菊城人才网',
  14. logo: '/images/logo_1.jpg',
  15. token: {
  16. colorPrimary: '#4FBE70'
  17. },
  18. },
  19. routes: routes,
  20. hash: true,
  21. npmClient: 'npm',
  22. });