| 123456789101112131415161718192021222324 |
- import { defineConfig } from '@umijs/max';
- export default defineConfig({
- antd: {},
- access: {},
- model: {},
- initialState: {},
- request: {},
- layout: false,
- routes: [
- {
- path: '/',
- redirect: '/table',
- },
- {
- name: ' CRUD 示例',
- path: '/table',
- component: './Table',
- },
- ],
- npmClient: 'pnpm',
- });
|