imgyuzzzang

NextJS Image에 <span> tag놈 왜 지맘대로 추가 돼!!! 본문

computer science/웹

NextJS Image에 <span> tag놈 왜 지맘대로 추가 돼!!!

imgyuzzzang 2023. 3. 29. 19:37
  • next 13부터는 완전 해결되어 img 태그만 추가되지만 아직 안 쓰고 있으니^^ 스킵

  • Next 버전따라 해결방법 다름! 버전 확인 또는 맞춰서 사용할 것

  • v 12.1.1 ~ 12.2.0

    // next.config.js 
    module.exports = { 
        experimental: { images: { layoutRaw: true } }, // Rest of the config 
    };
    <Image
        className="imgBack"
        src={myImg}
        width="160"
        height="160"
        alt=""
        layout="raw"
    />
  • v 12.2.x

    // next.config.js 
    module.exports = { 
        experimental: { images: { allowFutureImage: true } }, // Rest of the config 
    };

    import Image from 'next/future/image'

  • v 12.3 부터는 import Image from 'next/future/image'

Comments