21 lines
475 B
Clojure
21 lines
475 B
Clojure
;; shadow-cljs configuration
|
|
{:source-paths
|
|
["src/main"
|
|
"src/dev"
|
|
"src/test"]
|
|
|
|
:dependencies
|
|
[[datascript/datascript "1.7.8"] ; unused
|
|
|
|
[reagent/reagent "2.0.1"]
|
|
[io.github.tonsky/fast-edn "1.1.3"]
|
|
|
|
[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}}}}}
|