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', });