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.

11 lines
447 B

1 month ago
2 months ago
1 month ago
1 month ago
1 month ago
  1. return unless defined?(RailsLiveReload)
  2. RailsLiveReload.configure do |config|
  3. # Tailwind CSS
  4. # First rule prevents reloading from asset files ending with '.tailwind.css'
  5. config.watch %r{(app|vendor)/(assets|javascript)/.+\.(css|js|html|png|jpg)(?<!tailwind\.css)$}, reload: :always
  6. config.watch %r{app/assets/builds/tailwind.css}, reload: :always
  7. # Default watched folders & files
  8. config.watch %r{app/views/.+\.(erb|haml|slim)$}
  9. end