Skip to content

Commit

Permalink
[docs] Fix file size in example (#152)
Browse files Browse the repository at this point in the history
  • Loading branch information
markflorkowski authored Jun 10, 2023
1 parent 4983acd commit 85c8f4d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/src/pages/api-reference/server.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -62,10 +62,10 @@ export const ourFileRouter = {
.middleware((req) => auth(req))
.onUploadComplete((data) => console.log("file", data)),
// Takes a 4 2mb images and/or 1 200mb video
// Takes a 4 2mb images and/or 1 256mb video
mediaPost: f({
image: { maxFileSize: "2MB", maxFileCount: 4 },
video: { maxFileSize: "200MB", maxFileCount: 1 },
video: { maxFileSize: "256MB", maxFileCount: 1 },
})
.middleware((req) => auth(req))
.onUploadComplete((data) => console.log("file", data)),
Expand Down

1 comment on commit 85c8f4d

@vercel
Copy link

@vercel vercel bot commented on 85c8f4d Jun 10, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.