Skip to content

Commit 8194fc9

Browse files
committed
🐛 Fix the frontend upload file size limit #1186
1 parent b8517f7 commit 8194fc9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

frontend/const/chatConfig.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ export const chatConfig = {
3030

3131
// File limit configuration
3232
maxFileCount: 50,
33-
maxFileSize: 5 * 1024 * 1024, // Maximum 5MB per file
33+
maxFileSize: 10 * 1024 * 1024, // Maximum 10MB per file
3434

3535
// Supported image file extensions
3636
imageExtensions: ["jpg", "jpeg", "png", "gif", "webp", "svg", "bmp"],

0 commit comments

Comments
 (0)