Creates a new Storage bucket
buckets
table permissions: insert
objects
table permissions: noneA unique identifier for the bucket you are creating.
const { data, error } = await supabase .storage .createBucket('avatars', { public: false, allowedMimeTypes: ['image/png'], fileSizeLimit: 1024 })