773 B
773 B
title, classes, permalink, sidebar, last_modified_at, toc
title | classes | permalink | sidebar | last_modified_at | toc | ||
---|---|---|---|---|---|---|---|
Frequently Asked Questions | wide | /docs/faq/ |
|
2024-04-24T00:51:32+08:00 | false |
This page is still under construction. Meanwhile, check out existing issues and discussions to see if your question has already been asked before. {: .notice--primary }
-
'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