Files
mesite/shadow-cljs.edn
2025-08-19 18:09:38 -05:00

21 lines
377 B
Clojure

;; shadow-cljs configuration
{:source-paths
["src/dev"
"src/main/frontend"
"src/test"]
:dependencies
[[reagent "1.1.1"] [re-frame "1.4.3"] [cljs-ajax "0.8.1"]]
:build-hooks [(shadow-env.core/hook)]
:dev-http
{8020 "public"}
:builds
{:app
{:target :browser
:output-dir "public/js"
:asset-path "assets"
:modules
{:main
{:init-fn landing/init}}}}}