내일배움캠프 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
})
1
2
3
4
5
6
7
const { data, error } = await supabase
.storage
.createBucket('avatars', {
public: false,
allowedMimeTypes: ['image/png'],
fileSizeLimit: 1024
})
A new version of content is available.