Trying to just get started building a site with Middleman, and I'm following the tutorial to a t, but when I start the server I always get "Unknown Extension: livereload"
I already have
group :development do
gem 'middleman-livereload'
end
and
configure : development do
activate :livereload
end
Any ideas?
I had the exact same problem. For some reason LiveReload isn't recognized when you include it in a group
in your Gemfile. My fix:
gem 'middleman-livereload' # NOTE: breaks if placed inside a group!
group :middleman do
gem 'middleman'
end
I'm using middleman
3.3.12 and middleman-livereload
3.4.2
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With