Skip to content

Latest commit

 

History

History
63 lines (48 loc) · 1.66 KB

File metadata and controls

63 lines (48 loc) · 1.66 KB

Code Repository

개발 블로그

Based on Minimal Mistakes Jekyll theme.
README-minimal-mistakes-jekyll-theme.md

개발 환경

설치 및 실행 명령어

설치과정 3번 MSY32 and MINGW development toolchain

gem install jekyll
gem update --system
gem install bundler
bundle install
bundle add webrick
gem install tzinfo
gem install tzinfo-data // Asia/Seoul 타임존 문제 해결
bundle exec jekyll serve

다음으로는 Gemfile 에 다음의 내용을 하단에 붙혀넣기 합니다.

Windows does not include zoneinfo files, so bundle the tzinfo-data gem

gem 'tzinfo' gem "tzinfo-data", platforms: [:mingw, :mswin, :x64_mingw, :jruby]

서버실행

bundle exec jekyll serve

메모

  • Typora: 이미지를 쉽게 추가할 수 있음.

  • Sass Deprecation Warning 해결 (선택) Minimal Mistakes 테마가 Sass 최신 문법을 아직 반영하지 않아 경고가 많습니다. 기능상 문제는 없지만 미래를 위해 아래와 같이 할 수 있어요:

@import → @use, @forward로 마이그레이션

/ 나눗셈 → math.div() 함수로 대체

하지만 지금은 무시해도 OK입니다! (Jekyll 4.x + Minimal Mistakes에선 흔한 현상)

참고자료