Hi, I want to use figwheel-main with devcards. If I put :devcards true
in the map in the app.cljs.edn
it will work. but why I can't put this in the meta of that map?
according to the document of devcards, I should able to put :devcards
to figwheel options
.
That needs to be available to the compiler not figwheel if I remember correctly. All the dev cards are noops when this compiler flag isn’t set
https://github.com/bhauman/devcards#usage-with-figwheel but in this example, it didn't put any flag in compiler options.
https://github.com/bhauman/devcards/blob/master/src/devcards/util/utils.clj#L4
However it ends there that’s where it looks. The version you posted was from lein figwheel and presumably puts those into the compiler options
alright, it did not make too much differences.