-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshadow-cljs.edn
16 lines (16 loc) · 923 Bytes
/
shadow-cljs.edn
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{:source-paths ["src"]
:dependencies [[com.github.ljpengelen/shadow-cljs-hash-assets-hook "1.1.0"]
[org.babashka/sci "0.8.40"]
[reagent "1.2.0"]
[metosin/reitit-core "0.6.0"]
[metosin/reitit-frontend "0.6.0"]]
:builds {:app {:target :browser
:output-dir "public/js"
:asset-path "/js"
:build-hooks [(shadow-cljs-hash-assets-hook/hash-assets! {:source-root "public"
:target-root "dist"
:index "index.html"
:files ["css/site.css" "js/app.js"]})]
:modules {:app {:entries [cfb.core]}}
:devtools {:after-load cfb.core/mount-root}}}
:dev-http {3000 "public"}}