feat: init

This commit is contained in:
landaiqing
2024-07-10 10:15:16 +08:00
commit cba745729f
45 changed files with 11140 additions and 0 deletions

36
.umirc.ts Normal file
View File

@@ -0,0 +1,36 @@
import { defineConfig } from '@umijs/max';
export default defineConfig({
antd: {},
access: {},
model: {},
initialState: {},
request: {},
title: '五味子云存储',
favicons: ['logo.png'],
layout: {
title: '五味子云存储',
},
routes: [
{
path: '/',
redirect: '/login',
},
{
name: '首页',
path: '/home',
component: './Home',
},
{
name: '权限演示',
path: '/access',
component: './Access',
},
{
name: ' CRUD 示例',
path: '/table',
component: './Table',
},
],
npmClient: 'yarn',
});