본문으로 건너뛰기

Docusaurus plugin-ideal-images width 문제 해결

개요

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;
}