website/docs/_docs/22-faq.md
2024-04-26 00:43:42 +08:00

773 B

title, classes, permalink, sidebar, last_modified_at, toc
title classes permalink sidebar last_modified_at toc
Frequently Asked Questions wide /docs/faq/
nav
docs
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 your Gemfile and run bundle install. See jekyll/jekyll#8523