This looks like a very cool project, congrats 🎉. Quick question How does one go about removing tailwind in favor of vanilla CSS?
thanks!
you would need to provide a custom no-op command for clj -M:dev css. in your dev/tasks.clj file you should be able to do something like
(defn css [] nil)
(def custom-tasks {"css" #'css,
...
and then you can keep your css under resources/publicAwesome, thanks