jekyll 실행 경고]

https://jekyllrb-ko.github.io/

 

Jekyll • Simple, blog-aware, static sites

Transform your plain text into static websites and blogs

jekyllrb.com

사이트에 나온 튜토러얼대로 

 

~ $ 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 없이 정상적으로 동작한다....