컨텐츠로 건너뛰기

Expected src to be an image.

ExpectedImage: Expected src property for getImage or <Image /> to be either an ESM imported image or a string with the path of a remote image. Received SRC (type: TYPEOF_OPTIONS).

Full serialized options received: FULL_OPTIONS.

이미지의 src 속성이 유효하지 않습니다. 이미지 컴포넌트에는 src 속성이 ESM으로 가져온 이미지이거나 문자열이어야 합니다. 이는 getImage()의 첫 번째 매개변수에도 적용됩니다.

---
import { Image } from "astro:assets";
import myImage from "../assets/my_image.png";
---
<Image src={myImage} alt="..." />
<Image src="https://example.com/logo.png" width={300} height={300} alt="..." />

대부분의 경우 이 오류는 src에 전달된 값이 undefined인 경우 발생합니다.

더 보기: