[Jekyll] 테마 관련해서 Page build warning이 나올 때
“Page build warning”이 나올 때 메일이 오는데 해결 방법을 알아보자
환경 및 선수조건
- Jekyll
- YAML
문제
다음 아래와 같이 Page build warning
이라는 제목으로 메일이 올 때가 있다.
...
You are attempting to use a Jekyll theme, [Your theme name], which is not supported by GitHub Pages.
...
해결방법
2가지 해결방법이 있는데 아래와 같다.
1. _config.yml에서 theme 변수 주석 처리
공식으로 지원하는 theme가 아니면 아래 변수를 주석 처리해주거나 삭제하면 메일이 오지 않는다.
_config.yml
...
#theme: [Any theme name on above link]
...
2. _config.yml에서 theme 변수에 값 제대로 추가
https://pages.github.com/themes/에 나와있는 테마중 하나로 변수를 변경해줍니다.
_config.yml
...
theme: [Any theme name on above link]
...