컨텐츠로 건너뛰기

Expected image options.

ExpectedImageOptions: Expected getImage() parameter to be an object. Received OPTIONS.

getImage()의 첫 번째 매개변수는 이미지에 적용할 다양한 속성을 가진 객체여야 합니다.

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

대부분의 경우 이 오류는 매개변수가 객체 내부에 포함되지 않고 직접 전달되었기 때문에 발생합니다.

더 보기: