-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshadow-cljs.edn
30 lines (23 loc) · 1.24 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
{:source-paths ["src" "resources"]
:nrepl {:port 3333}
:dependencies [[binaryage/devtools "1.0.4"]
[reagent "1.1.0"]
[re-frame "1.3.0-rc2"]
[day8.re-frame/re-frame-10x "1.2.2"]
[day8.re-frame/tracing "0.6.2"]]
:builds {:app {:target :browser
:output-dir "public/js"
:asset-path "/js"
:modules {:main
{:entries [app.core]
:init-fn app.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}}}}