feat(dashboard): enable concurrent chunked upload by default for some storage providers

This commit is contained in:
Aaron Liu 2025-10-14 09:19:37 +08:00
parent 7c07a4cab9
commit 08e0b4c8f4
5 changed files with 5 additions and 0 deletions

View File

@ -35,6 +35,7 @@ const CosWizard = ({ onSubmit }: AddWizardProps) => {
media_meta_exts: ["jpg", "jpeg", "png", "bmp", "webp", "tiff", "avif", "heif"],
media_meta_generator_proxy: true,
thumb_generator_proxy: true,
chunk_concurrency: 3,
},
file_name_rule: "{uuid}_{originname}",
edges: {},

View File

@ -35,6 +35,7 @@ const KS3Wizard = ({ onSubmit }: AddWizardProps) => {
chunk_size: 25 << 20,
media_meta_generator_proxy: true,
thumb_generator_proxy: true,
chunk_concurrency: 3,
},
file_name_rule: "{uuid}_{originname}",
edges: {},

View File

@ -36,6 +36,7 @@ const ObsWizard = ({ onSubmit }: AddWizardProps) => {
media_meta_exts: ["png", "jpg", "jpeg", "gif", "bmp", "webp", "tiff"],
media_meta_generator_proxy: true,
thumb_generator_proxy: true,
chunk_concurrency: 3,
},
file_name_rule: "{uuid}_{originname}",
edges: {},

View File

@ -35,6 +35,7 @@ const OssWizard = ({ onSubmit }: AddWizardProps) => {
media_meta_exts: ["jpg", "jpeg", "png", "gif", "bmp", "webp", "tiff", "heic", "heif"],
media_meta_generator_proxy: true,
thumb_generator_proxy: true,
chunk_concurrency: 3,
},
file_name_rule: "{uuid}_{originname}",
edges: {},

View File

@ -54,6 +54,7 @@ const QiniuWizard = ({ onSubmit }: AddWizardProps) => {
media_meta_generator_proxy: true,
thumb_generator_proxy: true,
custom_proxy: true,
chunk_concurrency: 3,
},
file_name_rule: "{uuid}_{originname}",
edges: {},