Enable Rack::LiveReload on demand to avoid JS errors.

This commit is contained in:
Thorsten Eckel 2018-06-27 18:44:15 +02:00
parent 48ff43aaed
commit 05adf9a534
2 changed files with 12 additions and 10 deletions

View file

@ -144,7 +144,7 @@ group :development, :test do
# livereload on template changes (html, js, css)
gem 'guard', require: false
gem 'guard-livereload', require: false
gem 'rack-livereload'
gem 'rack-livereload', require: false
gem 'rb-fsevent', require: false
# auto symlinking

View file

@ -31,15 +31,17 @@ Rails.application.configure do
#config.assets.debug = true
config.assets.debug = false
# Automatically inject JavaScript needed for LiveReload
config.middleware.insert_after(
ActionDispatch::Static,
Rack::LiveReload,
no_swf: true,
min_delay: 500, # default 1000
max_delay: 10_000, # default 60_000
live_reload_port: 35_738
)
if defined?(Rack::LiveReload)
# Automatically inject JavaScript needed for LiveReload
config.middleware.insert_after(
ActionDispatch::Static,
Rack::LiveReload,
no_swf: true,
min_delay: 500, # default 1000
max_delay: 10_000, # default 60_000
live_reload_port: 35_738
)
end
# Asset digests allow you to set far-future HTTP expiration dates on all assets,
# yet still be able to expire them through the digest params.