diff --git a/.umirc.ts b/.umirc.ts index a154d10..b3d250c 100644 --- a/.umirc.ts +++ b/.umirc.ts @@ -67,6 +67,48 @@ export default defineConfig({ }, ] }, + { + name: ' 存储配置', + path: '/storage', + routes: [ + { + name: ' 阿里云配置表', + path: '/storage/ali', + component: "./Ali", + layout:true, + }, + { + name: ' minio配置表', + path: '/storage/minio', + component: "./Minio", + layout:true, + }, + { + name: ' 七牛云配置表', + path: '/storage/qiniu', + component: "./Qiniu", + layout:true, + }, + { + name: ' 腾讯云配置表', + path: '/storage/tencent', + component: "./Tencent", + layout:true, + }, + { + name: ' 又拍云配置表', + path: '/storage/up', + component: "./Up", + layout:true, + }, + { + name: ' sftp配置表', + path: '/storage/sftp', + component: "./Sftp", + layout:true, + }, + ] + }, ], npmClient: 'yarn', });