업로드 청크 크기 축소 (1MB -> 512KB) 및 안정화

This commit is contained in:
2026-01-04 20:00:16 +09:00
parent 24edadf7d7
commit 78d340b359

View File

@@ -2431,7 +2431,7 @@
setUploading(true);
try {
const CHUNK_SIZE = 1 * 1024 * 1024; // 1MB chunks
const CHUNK_SIZE = 512 * 1024; // 512KB chunks (서버의 극도로 낮은 용량 제한 대응)
for (const file of selectedFiles) {
const uploadId = Date.now().toString(36) + Math.random().toString(36).substring(2);