computersandblues.lodestone/shadow-cljs.edn
2025-11-18 14:08:24 +01:00

18 lines
460 B
Clojure

;; shadow-cljs configuration
{:source-paths
["src" ]
:dependencies
[[reagent/reagent "2.0.1"]
[applied-science/js-interop "0.4.2"]
[binaryage/devtools "1.0.7"] ; loaded automatically, see https://shadow-cljs.github.io/docs/UsersGuide.html#_preloads
]
:dev-http {8080 "public"}
:builds
{:frontend
{:target :browser
:modules {:main {:init-fn computersandblues.lodestone.app/init}}
:js-options {:entry-keys ["module" "browser" "main"]}}}}