(defn
toggle-autoload
[]
(let
[res
(utils/persistent-config-set! :figwheel-autoload (not (autoload?)))]
(utils/log
:info
(str
"Toggle autoload deprecated! Use (figwheel.client/set-autoload! false)"))
(utils/log
:info
(str "Figwheel autoloading " (if (autoload?) "ON" "OFF")))
res))