Sha256: cc8c482b046f06ecbb4d7048aac6d614024807066b4a08a6ed13b6621491eba1
Contents?: true
Size: 813 Bytes
Versions: 10
Compression:
Stored size: 813 Bytes
Contents
# frozen_string_literal: true CableReady.configure do |config| # Enable/disable exiting / warning when the sanity checks fail options: # `:exit` or `:warn` or `:ignore` # # config.on_failed_sanity_checks = :exit # Enable/disable assets compilation # `true` or `false` # # config.precompile_assets = true # Define your own custom operations # https://cableready.stimulusreflex.com/customization#custom-operations # # config.add_operation_name :jazz_hands # Change the default Active Job queue used for broadcast_later and broadcast_later_to # # config.broadcast_job_queue = :default # Specify a default debounce time for CableReady::Updatable callbacks # Doing so is a best practice to avoid heavy ActionCable traffic # # config.updatable_debounce_time = 0.1.seconds end
Version data entries
10 entries across 10 versions & 2 rubygems