const filename = `${uuidv4()}/${file.name}`; /* name 은 영어로 되어있어야함*/ const { data, imageInsertError } = await supabaseClient.storage .from("images") .upload(filename, file, { public: true, cacheControl: "3600", upsert: false, }); // storage (bucket) 에 저장해줌 if (imageInsertError) console.log(imageInsertError); const imagePath = data.path; const { error } = await supabaseClient .from(${테이블명}) .inser..