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.

преди 3 месеца
1234567891011121314151617181920212223242526
  1. import { defineConfig } from '@umijs/max';
  2. import routes from './routes';
  3. export default defineConfig({
  4. dva: {},
  5. antd: {
  6. configProvider: {}
  7. },
  8. access: {
  9. login: true,
  10. home: true,
  11. },
  12. initialState: {
  13. },
  14. model: {},
  15. request: {},
  16. layout: {
  17. title: '菊城人才网',
  18. logo: '/images/onlylogo.jpg',
  19. },
  20. routes: routes,
  21. hash: true,
  22. npmClient: 'npm'
  23. });