biff

skyjuice 2024-11-25T21:06:41.283469Z

This looks like a very cool project, congrats 🎉. Quick question How does one go about removing tailwind in favor of vanilla CSS?

2024-11-25T21:11:03.620649Z

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/public

👍 1
skyjuice 2024-11-26T01:06:26.143199Z

Awesome, thanks