Skip to content

Commit

Permalink
Merge pull request #72 from arati-tekdi/main
Browse files Browse the repository at this point in the history
Increased limit to 200MB
  • Loading branch information
arati-tekdi authored Dec 10, 2024
2 parents 4670970 + 7d2f6b0 commit 86cdd77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/common/middleware/middleware.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import * as FormData from 'form-data';
// Set up Multer with file size limit (e.g., 2 MB)
const upload = multer({
limits: {
fileSize: 2 * 1024 * 1024, // 2 MB limit
fileSize: 200 * 1024 * 1024, // 200 MB limit
},
});

Expand Down

0 comments on commit 86cdd77

Please sign in to comment.