Gatsby를 만들기 위한 준비물이 뭐가 있을까? 필요한 프로그램 설치 후에 gatsby 프로젝트 생성(2가지 방법)이 있다. 1. Git 설치 - https://www.atlassian.com/git/tutorials/install-git 2. Node 설치 - https://nodejs.org/ko/ 3. gatsby-cli 설치 npm install -g gatsby-cli 빠른 개발 환경 - Starter gatsby new 프로젝트명 https://github.com/gatsbyjs/gatsby-starter-blog gatsby develop 또는 npm run develop 세팅 끝 !! 심플한 블로그 템플릿이 보일 것이다. 여기에 필요한 개츠비 플러그인을 설치하여서 개발하면 편하다. 수동으..