figwheel

general discussion about figwheel, specific discussions in #figwheel-main and #lein-figwheel
raheel 2017-11-18T19:37:43.000035Z

how can I specify multiple cljsbuilds with start-figwheel!? I can do it by using a config in the REPL:

(def fig-config
                  {:figwheel-options {}
                   :build-ids ["dev" "devcards"]
                   :all-builds
                   [
                    {:id "dev"
                     ...
                     }
                    {:id "devcards"
                     ...}
                    ]})
(start-figwheel! fig-config)
But can I specify the build ids defined in project.clj (which I am replicating in the fig-config above)? Thanks!