-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshadow-cljs.edn
25 lines (18 loc) · 1.02 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
;; shadow-cljs configuration
{:deps {:aliases [:cljs]}
:nrepl {:port 3333}
:npm-deps {:rot-js "2.1.1"}
:dev-http {8080 "target/"}
:builds {:gelatin {:output-dir "target/",
:asset-path ".",
:target :browser,
:modules {:main {:entries [gelatin.main],
:init-fn gelatin.main/main}},
:devtools {:preloads [day8.re-frame-10x.preload]}
:dev {:closure-defines
{re_frame.trace.trace_enabled? true
"re_frame.trace.trace_enabled_QMARK_" true
day8.re-frame.tracing.trace-enabled? true
"day8.re-frame.tracing.trace-enabled_QMARK_" true
goog.DEBUG true}}
:release {:output-dir "production-target"}}}}