-
Notifications
You must be signed in to change notification settings - Fork 2
/
shadow-cljs.edn
17 lines (17 loc) · 971 Bytes
/
shadow-cljs.edn
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{:deps true
:nrepl {:port 9001
:middleware [cider.nrepl/cider-middleware]}
:builds {:app {:target :browser
:output-dir "resources/public/js/"
:asset-path "/js"
:modules {:main {:entries [org.motform.multiverse.main]
:init-fn org.motform.multiverse.main/mount}}
:compiler-options {:infer-externs true
:optimizations :simple
:closure-defines {"re_frame.trace.trace_enabled_QMARK_" true
"day8.re-frame.tracing.trace-enabled?" true
"goog.DEBUG" true}}
:devtools {:http-root "resources/public"
:http-port 8022
:preloads [devtools.preload
day8.re-frame-10x.preload]}}}}