-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshadow-cljs.edn
More file actions
37 lines (31 loc) · 1.51 KB
/
shadow-cljs.edn
File metadata and controls
37 lines (31 loc) · 1.51 KB
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
28
29
30
31
32
33
34
35
36
37
{:deps {:aliases [:client]}
:dev-http
{8280 ["resources/client/public" #_"classpath:public"]
#_#_8290 "target/browser-test"}
:builds
{:app
{:target :browser
:output-dir "resources/client/public"
:asset-path "/"
:compiler-options {:warnings {:fn-deprecated false}}
:modules {:app {:init-fn vd-designer.index/init}}
:dev
{:devtools {:preloads [day8.re-frame-10x.preload.react-18 devtools.preload]
:after-load vd-designer/render}
:compiler-options {:optimizations :none
:external-config {:devtools/config
{:min-expandable-sequable-count-for-well-known-types 1
:features-to-install [:formatters :hints]}}
:closure-defines {goog.DEBUG true
re-frame.trace.trace-enabled? true
day8.re-frame.tracing.trace-enabled? true}}
:build-hooks [(postcss/watch "src/cljs/main.css" "resources/client/public/app.css")]}
:release
{:compiler-options {:optimizations :simple
:closure-defines {goog.DEBUG false}}
:build-hooks [(postcss/release "src/cljs/main.css" "resources/client/public/app.css")]
:build-options {:ns-aliases {day8.re-frame.tracing day8.re-frame.tracing-stubs}}}}
:test
{:target :node-test
:output-to "out/node-tests.js"
:autorun false}}}