-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshadow-cljs.edn
27 lines (24 loc) · 1.31 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
27
;; shadow-cljs configuration
{:deps {:aliases [:cljs :dev]}
:dev-http {3000 {:roots ["resources/public" "frontend-target/dev/public"]
:proxy-url "http://localhost:3010"}}
:cache-blockers #{lambdaisland.ornament}
:builds {:dev
{:target :browser
:output-dir "frontend-target/dev/public/js"
:asset-path "/js"
:compiler-options {:optimizations :none
:source-map true
:source-map-detail-level :all
:closure-defines {"re_frame.trace.trace_enabled_QMARK_" true}
;; this is specifically for the warning in loom/alg_generic:494.
:warnings {:invalid-arithmetic false}}
:build-hooks [(donut.hooks/write-styles-hook)]
:modules
{:main {:entries [donut.minimal.frontend.core]
:init-fn donut.minimal.frontend.core/init}}
;; start a development http server on http://localhost:3000
:devtools
{:preloads [day8.re-frame-10x.preload]
:before-load donut.minimal.frontend.core/stop
:after-load donut.minimal.frontend.core/start}}}}