DEV Community

Discussion on: Build File Upload/Download Functionality with Image Preview using MERN stack

Collapse
 
extro2022 profile image
Thanh Nguyen

How to handle high dimension photo

Collapse
 
myogeshchavan97 profile image
Yogesh Chavan

This application will work for files with any dimension. You just need to change the fileSize property of the limits property in server/routes/file.js file, If the file you're uploading is larger in size. Currently, I have set it to only 1MB which I verified for 4291 × 3218 dimension which is this image

limits: {
    fileSize: 1000000 // max file size 1MB = 1000000 bytes
  }

Some comments have been hidden by the post's author - find out more