Frequently Asked Questions
This page is still under construction. Meanwhile, check out existing issues and discussions to see if your question has already been asked before.
-
'require': cannot load such file -- webrick (LoadError)
This error occurs when you run
jekyll serve
on Ruby 3.0+.Ruby 3.0 no longer comes with Webrick by default. To fix this, add
gem "webrick"
to yourGemfile
and runbundle install
. See jekyll/jekyll#8523