본문 바로가기
소프트웨어

[Docusaurus] plugin-ideal-images width 문제 해결

by TaeGyeong Lee 2024. 9. 27.

개요 

plugin-ideal-images 사용하여 이미지 로딩 시 이미지 가로 길이가 항상 100%를 유지하는 문제가 있습니다.

import Image from "@theme/IdealImage";

<Image img={require("/static/img/software/docusaurus-hits1.png")} />;

 

적용 

src → css → custom.css 에 아래 코드를 추가하세요.

img {
  width: auto !important;
}