uploadthing
uploadthing copied to clipboard
File uploads for modern web devs
How to styling the button? (e.g: when user click his user avatar, then it trigger the UploadButton) Thanks.
For instance: ```ts withoutMdwr: f .limits("max 2 files of 1GB each") .fileTypes(["image"]) .middleware(async () => { return { testMetadata: "lol" }; }) .onUploadComplete(({ metadata, file }) => { console.log("uploaded with...
This is an initial prototype of what react native support would look like. TODO: - [ ] Fix vercel deployments - [x] Add theming - [x] Document props - [...
### What happened? First off all, thanks for uploadthing - love the work! The following is written out of love and with gratitude. There a few instances in docs where...
Darkmode

Filetype is set to blob and I tried uploading a PNG image. Not sure if this is a bug, or just wrong config on my end for localhost.
Hey, currently, I don't see a way to limit the number of files that can be uploaded using UploadThing. Am I missing something or is there a different way to...
Instead of having to pass the generic everytime, you can now create type safed components using the `genereateReactComponents` method. ```ts import { genereateReactComponents } from "@uploadthing/react"; import { OurFileRouter }...
Added a prop `onDrop` for the `` component. Whenever the user selects or drops the file it will call the passed `onDrop` callback function.