From f8a123ab9437a11ad65b533fbefaf97522623a5a Mon Sep 17 00:00:00 2001 From: Lan Date: Mon, 24 Nov 2025 19:26:46 +0800 Subject: [PATCH] fix: https://github.com/vastsa/FileCodeBox/issues/408 --- src/constants/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/constants/index.ts b/src/constants/index.ts index 9887e55..9585dc7 100644 --- a/src/constants/index.ts +++ b/src/constants/index.ts @@ -56,7 +56,7 @@ export const FILE_SIZE_LIMITS = { // 时间相关常量 export const TIME_CONSTANTS = { ALERT_DURATION: 5000, // 5秒 - REQUEST_TIMEOUT: 30000, // 30秒 + REQUEST_TIMEOUT: 300000000, PROGRESS_UPDATE_INTERVAL: 100 // 100毫秒 } as const