Skip to content

Instantly share code, notes, and snippets.

@zbeyens
Created April 5, 2024 07:45
Show Gist options
  • Save zbeyens/10bd63ae6d327de47a77e0e05ec6d237 to your computer and use it in GitHub Desktop.
Save zbeyens/10bd63ae6d327de47a77e0e05ec6d237 to your computer and use it in GitHub Desktop.
export const fetchCompressImage = async (file: Blob) => {
const formData = new FormData();
formData.append('Content-Type', file.type);
formData.append('file', file);
const res = await fetch(apiRoutes.compressImage, {
body: formData,
method: 'POST',
});
return await res.blob();
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment