Hello all, is there any way to use devcards with figwheel in emacs cider?
Figwheel uses standard repl tooling afaik: https://github.com/clojure-emacs/cider/blob/master/doc/up_and_running.md
https://github.com/bhauman/lein-figwheel/wiki/Using-the-Figwheel-REPL-within-NRepl
@sventechie it seems that you can use one or another, right?
like using it in devcards.html or index.html, they recompile for devcards or index, not both.
is there any way to recompile for both?
you can build more build configurations at once with figwheel: (require '[figwheel-sidecar.repl-api :as ra]) (ra/switch-to-build "app" "devcards")
@rarous It worked, thanks a lot