Sha256: 1bd3a45a14d48e6e5534106f5b7954976e3fe43b70101bcf9fc812f90ed8c8e9
Contents?: true
Size: 904 Bytes
Versions: 115
Compression:
Stored size: 904 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 # config.verifier_key = Rails.application.credentials.dig(:anycable, :cable_ready_secret) end
Version data entries
115 entries across 115 versions & 1 rubygems