-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathshadow-cljs.edn
26 lines (18 loc) · 1.41 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
;; shadow-cljs configuration
{:lein {:profile "+scljs"}
:open-file-command ["idea" :pwd "--line" :line :file]
:repositories {"sixsq-community-releases" {:url "https://nexus.sixsq.com/content/repositories/releases-community-rhel7/"}}
:builds {:webui {:target :browser
:output-dir "resources/public/js"
:asset-path "/js"
:modules {:webui {:entries [sixsq.slipstream.webui.core]}}
:devtools {:http-root "resources/public"
:push-state/index "webui.html"
:http-port 8280
:after-load sixsq.slipstream.webui.core/mount-root
:preloads [devtools.preload]}
:dev {:closure-defines {sixsq.slipstream.webui.utils.defines/HOST_URL "https://nuv.la"
:compiler-options {:infer-externs :auto}}}
:release {:closure-defines {sixsq.slipstream.webui.utils.defines/HOST_URL ""}
:compiler-options {:infer-externs :auto
:optimizations :advanced}}}}}