Next.js
Next.js의 Image 컴포넌트와 관련된 경고 메시지 해결하기
Next.js 프로젝트에서 이미지를 사용하면서 발생한 첫 번째 경고 메시지// 이미지를 렌더링할 때 width나 height 중 하나만 변경된 경우 발생하는 경고 메시지Image with src "/imgs/index-1.png" has either width or height modified, but not the other. If you use CSS to change the size of your image, also include the styles 'width: "auto"' or 'height: "auto"' to maintain the aspect ratio.경고가 발생한 코드import { TextImageProps } from "@/types/interfaces/indexInterface..
2024. 5. 29. 02:04