Skip to content

Commit

Permalink
refactor: adjust max file size to 250mb
Browse files Browse the repository at this point in the history
  • Loading branch information
kespinola committed Oct 6, 2023
1 parent 08b56a4 commit 2bc7a7e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ await fastify.register(fastifyMultiPart, {
limits: {
fields: 0, // Max number of non-file fields
files: 1, // Max number of file fields
fileSize: 1024 * 1024 * 1000, // Max file size in bytes
fileSize: 1024 * 1024 * 250, // Max file size in bytes
},
});

Expand Down

0 comments on commit 2bc7a7e

Please sign in to comment.