跳转到内容

Expected image options.

ExpectedImageOptions: 预期 getImage() 的参数是一个对象。接收到了 OPTIONS

getImage() 的第一个参数应该是一个对象,包含应用于图像的不同属性。

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

在大多数情况下,这个错误是因为直接传入了参数,而不是将其包裹在一个对象中。

另请参阅: