You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

config.ts 395B

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. });