Variable: cider-figwheel-main-default-options

cider-figwheel-main-default-options is a customizable variable defined in cider.el.

Value

nil

Documentation

Defines the figwheel.main/start options.

Note that figwheel-main/start can also accept a map of options, refer to Figwheel for details.

This variable was added, or its default value changed, in cider version 0.18.0.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider.el
(defcustom cider-figwheel-main-default-options nil
  "Defines the `figwheel.main/start' options.

Note that figwheel-main/start can also accept a map of options, refer to
Figwheel for details."
  :type 'string
  :safe (lambda (s) (or (null s) (stringp s)))
  :package-version '(cider . "0.18.0"))