-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshadow-cljs.edn
More file actions
15 lines (15 loc) · 868 Bytes
/
shadow-cljs.edn
File metadata and controls
15 lines (15 loc) · 868 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{:deps {:aliases [:dev]}
:nrepl {:port 9000}
:builds {:app {:target :browser
:output-dir "resources/public/js"
:asset-path "/js"
:modules {:main {:entries [basic.core]}}
:dev {:compiler-options {:closure-defines {"re_frame.trace.trace_enabled_QMARK_" true}
:infer-externs :auto}}
:devtools {:after-load basic.core/on-reload
:http-root "resources/public"
:http-port 3000
:http-handler shadow.http.push-state/handle
:preloads [devtools.preload]}}
:ci-tests {:target :karma
:output-to "target/ci.js"}}}