-
Notifications
You must be signed in to change notification settings - Fork 1
/
shadow-cljs.edn
22 lines (19 loc) · 1.13 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
{:lein {:profile "+cljs"}
:dev-http {8000 "classpath:public"
:push-state/index "live.html"}
:builds {:app {:target :browser
:output-dir "resources/public/js"
:asset-path "/js"
:devtools {:watch-dir "resources/public"}
:modules {:main {:entries [shortcut.ui.client]}}
:compiler-options {:output-feature-set :es8}
:release {:module-hash-names true}}
:live {:target :browser
:modules {:main {:entries [shortcut.ui.client]}}
:compiler-options {:output-feature-set :es8}
:output-dir "resources/public/js"
:asset-path "/js"
:devtools {:watch-dir "resources/public"}
:closure-defines {"re_frame.trace.trace_enabled_QMARK_" true
operatr.generate/release 1
operatr.generate/release-time "2021-10-01"}}}}