跳转到内容

Expected image options, not an ESM-imported image.

ExpectedNotESMImage: ESM 导入的图像无法直接传递给 getImage()。相反,请在 src 属性中传递带有图像的对象。

ESM 导入的图像无法直接传递给 getImage()。相反,请在 src 属性中传递带有图像的对象。

import { getImage } from "astro:assets";
import myImage from "../assets/my_image.png";
const optimizedImage = await getImage( myImage );
const optimizedImage = await getImage({ src: myImage });

请参阅: