오늘 작업 한 것
UI 작업
image is missing required "src" property:
src를 찾을 수 없어 나는 오류.Next에서만 존재하는 오류인듯..
따로 오류창이 뜨거나 이미지가 안 불러와지는 건 아닌데..콘솔이 거슬려 해결방법을 찾았다.
<Image
src={imagePreview}
loader={({ src }) => src}
priority={true}
fill
alt="프리뷰"
style={{ objectFit: "cover", objectPosition: "center" }}
unoptimized
/>
// ->
<Image
src={`${recipeData.thumbnail}`}
alt="thumbnail"
className="image-detail"
fill
unoptimized
style={{ objectFit: "cover", objectPosition: "center" }}
/>
//아래 형식으로 수정하여 오류를 고쳤다.
'[내일배움캠프] > TIL' 카테고리의 다른 글
| 23.02.23) 최종 프로젝트 작업을 진행한 81일차 (0) | 2023.02.23 |
|---|---|
| 23.02.22) 최종 프로젝트 작업을 진행한 80일차 (0) | 2023.02.23 |
| 23.02.20) 최종 프로젝트 작업을 진행한 78일차 (0) | 2023.02.21 |
| 23.02.17) 최종 프로젝트 작업을 진행한 77일차 (0) | 2023.02.17 |
| 23.02.16) 최종 프로젝트 작업을 진행한 76일차 (0) | 2023.02.16 |