깃허브 블로그 오류 해결하기 (Chirpy 테마)
Git 블로그를 만들기 위해 Chirpy 테마를 설치하는 중 생긴 오류들과 해결 과정입니다. (윈도우 환경) 1) bundle 실행 시 wdm 설치 에러An error occurred while installing wdm (0.1.1), and Bundler cannot continue.In Gemfile: wdm Gemfile을 보면 다음과 같은 라인이 있습니다.gem "wdm", "~> 0.1.1", :platforms => [:mingw, :x64_mingw, :mswin] 이 부분의 "0.1.1"을 "0.1"로 바꿔주면 간단히 해결됩니다.gem "wdm", "~> 0.1", :platforms => [:mingw, :x64_mingw, :mswin] 2) stylesheet 에러 로컬에서는 ..