feat: Increase maximum image upload size from 2MB to 15MB.
All checks were successful
Deploy to Production / test (push) Successful in 40s

This commit is contained in:
syntaxbullet
2026-02-06 13:48:43 +01:00
parent b18b5fab62
commit ee088ad84b
2 changed files with 7 additions and 7 deletions

View File

@@ -17,7 +17,7 @@ interface ImageUploaderProps {
}
const ACCEPTED_TYPES = ["image/png", "image/jpeg", "image/webp", "image/gif"];
const MAX_SIZE_DEFAULT = 2; // 2MB
const MAX_SIZE_DEFAULT = 15; // 15MB
export function ImageUploader({
existingUrl,