https://jekyllrb-ko.github.io/
사이트에 나온 튜토러얼대로
~ $ gem install bundler jekyll
~ $ jekyll new my-awesome-site
~ $ cd my-awesome-site
~/my-awesome-site $ bundle exec jekyll serve
# => 브라우저로 http://localhost:4000 에 접속
실행하면 scss와 관련된 경고가 주루룩 뜬다..
Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0.
node sass쓰지말고 dart sass쓰라는 얘기인데...
해결방법은
Gemfile에 아래 내용 추가호 bundle update
gem "jekyll-sass-converter", "~> 2.0"
후 실행하면 warning 없이 정상적으로 동작한다....
'Programming' 카테고리의 다른 글
[jekyll 설치에러] You don't have write permissions for the /Library/Ruby/Gems/2.6.0 directory. (0) | 2023.09.10 |
---|