import fetch from 'node-fetch' const res = await fetch(image) const imgBody = `data:${res.headers.get('content-type')};base64,${(await res.arrayBuffer()).toString('base64')}`