zhengyiming
2025-07-15 b0fa289bf8ff6ee35f48ee8ed6c10b22db636f0f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
import { defineConfig } from '@umijs/max';
 
export default defineConfig({
  antd: {},
  access: {},
  model: {},
  initialState: {},
  request: {},
  mfsu: false,
  qiankun: {
    slave: {},
  },
  base: '/v2/',
  routes: [
    {
      path: '/',
      redirect: '/about',
    },
    {
      name: '关于大赛',
      path: '/about',
      component: './Home',
    },
  ],
  npmClient: 'pnpm',
});