feat: add TaskBoard demo and refactor project structure

This commit is contained in:
ken
2026-02-16 13:36:29 +08:00
parent ca828a6c7f
commit a4a68ec039
24 changed files with 976 additions and 1698 deletions

View File

@@ -2,7 +2,15 @@ import { defineConfig } from '@umijs/max';
export default defineConfig({
// Force restart
antd: {},
antd: {
theme: {
token: {
colorPrimary: '#fa541c',
colorInfo: '#fa541c',
wireframe: false,
},
},
},
access: {},
model: {},
initialState: {},
@@ -142,6 +150,12 @@ export default defineConfig({
},
],
},
{
name: 'demo.task-board',
path: '/demo/task-board',
icon: 'ProfileOutlined',
component: './Demo/TaskBoard',
},
],
npmClient: 'npm',
});