const formData = new FormData();
formData.append("file", file);
fetch('https://resizableapi.vercel.app/api/resize', {
method: 'POST',
body: formData,
})
.then(response => response.blob())
.then(blob => {
const url = URL.createObjectURL(blob);
console.log("Resized image URL:", url);
});