nextjs-course-code
nextjs-course-code copied to clipboard
10 prj blog
The customRenderer Image component's alt property should be set to {image.properties.alt} instead of {image.alt} :
<Image
src={`/images/posts/${post.slug}/${image.properties.src}`}
alt={image.properties.alt}
width={600}
height={300}
/>
Thanks, -Ed