module CKEditor5::Rails::Presets::Concerns::ConfigurationMethods

def configure(key, value)

Other tags:
    Example: Setting nested configuration -
    Example: Setting plugin configuration -
    Example: Setting simple configuration -

Parameters:
  • value (Object) -- The configuration value
  • key (Symbol, String) -- The configuration key
def configure(key, value)
  config[key] = value
end