Home supabase Create a bucket
Post
Cancel

supabase Create a bucket

내일배움캠프 LGLG!

최종 프로젝트 주차 - Team Project

Create a bucket

버킷 만들기

1
2
3
4
5
6
7
const { data, error } = await supabase
  .storage
  .createBucket('avatars', {
    public: false,
    allowedMimeTypes: ['image/png'],
    fileSizeLimit: 1024
  })
This post is licensed under CC BY 4.0 by the author.

supabase Delete data

supabase Retrieve a bucket