diff --git a/src/components/ImageUploader.tsx b/src/components/ImageUploader.tsx index 897b289..bd028c5 100644 --- a/src/components/ImageUploader.tsx +++ b/src/components/ImageUploader.tsx @@ -49,6 +49,12 @@ const ImageUploader = (props: containerSize) => { if (files == null || files.length === 0) return; const file = files[0]; + console.log(file.size); + + if (file.size > 10 * 1024 * 1024) { + window.alert('이미지 크기는 10MB 이하여야 합니다.'); + return; + } // 파일 확장자가 jpg면 return const fileExtension = getFileExtension(file.name);