(set-autoload b)
Figwheel by default loads code changes as you work. Sometimes you
just want to work on your code without the ramifications of
autoloading and simply load your code piecemeal in the REPL. You can
turn autoloading on and of with this method.
(figwheel.client/set-autoload false)
NOTE: This is a persistent setting, meaning that it will persist
through browser reloads.
Source
(defn
set-autoload
"Figwheel by default loads code changes as you work. Sometimes you\n just want to work on your code without the ramifications of\n autoloading and simply load your code piecemeal in the REPL. You can\n turn autoloading on and of with this method.\n\n (figwheel.client/set-autoload false)\n\n NOTE: This is a persistent setting, meaning that it will persist\n through browser reloads."
[b]
(assert (or (true? b) (false? b)))
(utils/persistent-config-set! :figwheel-autoload b))