업로드 청크 크기 축소 (1MB -> 512KB) 및 안정화
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user