WannaR
Results
2
comments of
WannaR
Is there any updates? Or some alternatives?
Here is a temporary solution: ```typescript const formData= new FormData(); formData.append("val1", "val1"); formData.append("blob", blob); const req = new Request(uploadUrl, { method: "POST", body: formData, }); const buffer = await req.arrayBuffer();...