@frogbotai/storage-uploadthing
v0.25.0
Published
UploadThing storage adapter for FrogBot.
Readme
@frogbotai/storage-uploadthing
UploadThing storage adapter for FrogBot.
Installation
pnpm add @frogbotai/storage-uploadthingUsage
import { buildConfig } from 'frogbot';
import { uploadthingStorage } from '@frogbotai/storage-uploadthing';
export default buildConfig({
storage: [
uploadthingStorage({
options: {
token: process.env.UPLOADTHING_TOKEN,
},
collections: {
media: true,
},
}),
],
// ...rest of config
});