-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshadow-cljs.edn
29 lines (22 loc) · 891 Bytes
/
shadow-cljs.edn
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{:dependencies [[rum "0.12.8" :exclusions [[cljsjs/react] [cljsjs/react-dom]]]
[lambdaisland/fetch "1.0.41"]
[cljs-ajax "0.8.4"]]
:source-paths ["src"]
:nrepl {:port 8777}
:builds {:feedbackbocks
{:target :browser
:output-dir "public/js"
:asset-path "/js"
:modules
{:feedbackbocks {:entries [feedback-box.core]}}
:release {:output-dir "target"}
:devtools
{;; before live-reloading any code call this function
:before-load feedback-box.core/stop
;; after live-reloading finishes call this function
:after-load feedback-box.core/start
:http-root "public"
:http-port 8700
:preloads [devtools.preload]}}
:test {:target :browser-test
:test-dir "test"}}}