Skip to content

Commit

Permalink
[fix] chore
Browse files Browse the repository at this point in the history
  • Loading branch information
Prabhuomkar9 committed Feb 13, 2025
1 parent 7d5e8bc commit cccdfec
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/uploadthing/router.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,16 @@ const f = createUploadthing();
export const uploadRouter = {
asset: f({
image: {
maxFileCount: 10,
maxFileSize: "512KB",
maxFileCount: 50,
maxFileSize: "64MB",
},
video: {
maxFileCount: 5,
maxFileSize: "16MB",
maxFileCount: 50,
maxFileSize: "64MB",
},
"model/gltf-binary": {
maxFileCount: 5,
maxFileSize: "4MB",
maxFileCount: 50,
maxFileSize: "64MB",
},
})
.middleware(async ({ req, res, files }) => {
Expand Down

0 comments on commit cccdfec

Please sign in to comment.