-
Notifications
You must be signed in to change notification settings - Fork 0
/
shadow-cljs.edn
22 lines (18 loc) · 1.03 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
{:nrepl {:port 3333}
:deps true
:builds {:app {:target :browser
:output-dir "public/js"
:asset-path "/js"
:modules {:main
{:entries [benjamin.lawnmower.core]
:init-fn benjamin.lawnmower.core/init}}
:dev {:compiler-options
{:closure-defines {re-frame.trace.trace-enabled? true
day8.re-frame.tracing.trace-enabled? true}}}
:release {:build-options
{:ns-aliases {day8.re-frame.tracing day8.re-frame.tracing-stubs}}}
:devtools {:http-root "public"
:watch-dir "public"
:http-host "0.0.0.0"
:preloads [day8.re-frame-10x.preload]
:http-port 8000}}}}