gatsby-plugin-image

개발관련

Gatsby 개츠비 에서 이미지 사용 시 최적화 관련 팁 gatsby-plugin-image 사용법

gatsby-plugin-image gatsby-plugin-image를 사용해서 gatsby 이미지를 최적화하는 방법을 알아보자. 설치 하기 npm install gatsby-plugin-image gatsby-plugin-sharp gatsby-source-filesystem gatsby-transformer-sharp 설정 파일 gatsby-config.js 파일에서 plugin에 추가 해준다. module.exports = { plugins: [ `gatsby-plugin-image`, `gatsby-plugin-sharp`, `gatsby-transformer-sharp`, // 동적 이미지 생성을 위해서 필요함 ], } 정적인 이미지 Static Image 사용 시 import { Static..

개발자 Dane
'gatsby-plugin-image' 태그의 글 목록