跳转到内容

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 });

请参阅:

贡献

你有什么想法?

社区