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!