You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

15 lines
513 B

# frozen_string_literal: true
if defined?(RailsLiveReload) && Rails.env.development?
RailsLiveReload.configure do |config|
# Default watched folders & files
config.watch %r{app/views/.+\.(erb|haml|slim)$}
config.watch %r{(app|vendor)/(assets|javascript)/\w+/(.+\.(css|js|html|png|jpg|ts|jsx)).*}, reload: :always
# USEFUL for tailwind changes!!!!
config.watch %r{app/assets/builds/tailwind.css}, reload: :always
# HOT Constants
config.watch(%r{/\.env}, reload: :always)
end
end