-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshadow-cljs.edn
More file actions
14 lines (14 loc) · 856 Bytes
/
shadow-cljs.edn
File metadata and controls
14 lines (14 loc) · 856 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{:deps {:aliases [:frontend]}
:dev-http {7777 {:root "resources/public"
:handler user/shadow-handler}}
:builds {:app {:target :browser
;; redefs needed in dk.cst.dannet.web.i18n, warning disabled
:compiler-options {:warnings {:redef-in-file false}}
:output-dir "resources/public/js/compiled"
:asset-path "/js/compiled"
:module-hash-names true
:modules {:main {:init-fn dk.cst.dannet.web.client/init!}}}
:test {:target :browser-test
:test-dir "resources/public/js/test"
:devtools {:http-port 7776
:http-root "resources/public/js/test"}}}}