-
Notifications
You must be signed in to change notification settings - Fork 1
/
shadow-cljs.edn
30 lines (29 loc) · 1.09 KB
/
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
30
;; shadow-cljs configuration
;{:source-paths
; ["src/dev"
; "src/main"
; "src/test"]
;
; :dependencies true
;
; :builds
; {:app {:target :browser
; :output-dir "public/js"
; :modules {:main {:entries [com.github.dbasner.this-or-that.core]}}
; :devtools {:repl-init-ns com.github.dbasner.this-or-that.core
; :after-load com.github.dbasner.this-or-that.core/on-refresh
; :repl-pprint true
; :http-root "public/"
; :http-port 9001}}}}
;
{
:deps true
:builds {:app {:target :browser
:output-dir "public/js"
:modules {:main {:entries [com.github.dbasner.this-or-that.core]}}
:devtools {:repl-init-ns com.github.dbasner.this-or-that.core
:after-load com.github.dbasner.this-or-that.core/on-refresh
:repl-pprint true
:http-root "public/"
:http-port 9001}}}
:nrepl {:port 3333}}