-
Notifications
You must be signed in to change notification settings - Fork 1
/
shadow-cljs.edn
20 lines (18 loc) · 1.07 KB
/
shadow-cljs.edn
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{:source-paths ["src/main/project/cljs"]
:deps true
:http {:port 0}
:builds {:app {:target :browser
:output-dir "src/resources/public/js"
:asset-path "/js"
:modules {:main {:entries [project.cljs.main]}}
:compiler-options {:external-config {:devtools/config {:features-to-install [:formatters :hints]
:fn-symbol "F"
:print-config-overrides true}}
:pretty-print true
:closure-defines {re-frame.trace/trace-enabled? true
day8.re-frame.tracing/trace-enabled? true}}
:devtools {:watch-dir "src/resources/public"
:preloads [day8.re-frame-10x.preload]
:after-load project.cljs.main/reload!
:repl-init-ns project.cljs.main}
}}}