From 5f395ba3082c3dd42bc178fcb9a085e7ee9f9387 Mon Sep 17 00:00:00 2001 From: chizhehui Date: Sat, 13 Jul 2024 11:01:36 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E5=AE=8C=E6=88=90=E9=98=BF=E9=87=8C?= =?UTF-8?q?=E4=BA=91=E9=85=8D=E7=BD=AE=E8=A1=A8=E3=80=81minio=E9=85=8D?= =?UTF-8?q?=E7=BD=AE=E8=A1=A8=E3=80=81=E8=85=BE=E8=AE=AF=E4=BA=91=E9=85=8D?= =?UTF-8?q?=E7=BD=AE=E8=A1=A8=E3=80=81=E4=B8=83=E7=89=9B=E4=BA=91=E9=85=8D?= =?UTF-8?q?=E7=BD=AE=E8=A1=A8=E3=80=81up=E9=85=8D=E7=BD=AE=E8=A1=A8?= =?UTF-8?q?=E3=80=81sftp=E9=85=8D=E7=BD=AE=E8=A1=A8=E7=9A=84=E9=A1=B5?= =?UTF-8?q?=E9=9D=A2=E8=AE=BE=E8=AE=A1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .umirc.ts | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) 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', });