computersandblues.lodestone/shadow-cljs.edn

20 lines
489 B
Clojure

;; shadow-cljs configuration
{:source-paths
["src/main"
"src/dev"
"src/test"]
: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"]}}}}