forked from bhauman/devcards
-
Notifications
You must be signed in to change notification settings - Fork 0
/
shadow-cljs.edn
23 lines (20 loc) · 1.32 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
{:deps {:aliases [:dev]}
:http {:port 9640}
:dev-http {8021 ["example-resources/public" "classpath:public"]}
:builds {:devcards-demos {:output-dir "example-resources/public/devcards/js/compiled"
:target :browser
:asset-path "js/compiled"
:modules {:devdemos {:default true
:init-fn devdemos.start-ui/main}}
:compiler-options {:infer-externs :auto
:pseudo-names true
:devcards true
:main "devdemos.start-ui"
:asset-path "js/compiled/out"
:output-to "example-resources/public/devcards/js/compiled/devdemos.js"
:output-dir "example-resources/public/devcards/js/compiled/out"
:recompile-dependents false
:preloads [devtools.preload]
:optimizations :none
:source-map-timestamp true
}}}}