--- import { getImage } from "@astrojs/image"; const i = { src: "https://images.unsplash.com/photo-1664309570712-564c233f112b?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=200&q=80", format: 'avif', width: 200, height: 300, } const image = await getImage(i as any); --- Astro

Astro