After an update I had trouble building geoserver website locally.
Seems a known issue with Jekyll serve fails on Ruby 3.0, resolved using:
bundle add webrick
Which updates Gemfile to:
source ‘https://rubygems.org’
gem ‘jekyll-feed’
gem ‘jekyll-paginate’
gem “webrick”, “~> 1.7”
Has anyone else run into problems? I do not want to commit a “fix” if it is local to my machine.
It appears to be a known issue for GitHub pages.
···
–
Jody Garnett