-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshadow-cljs.edn
More file actions
36 lines (33 loc) · 1.11 KB
/
shadow-cljs.edn
File metadata and controls
36 lines (33 loc) · 1.11 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
{
:source-paths ["src/cljs"]
:dependencies [
[reagent "1.3.0"]
[re-frame "1.4.3"]
[cljs-http "0.1.48"]
[cljsjs/react "18.3.1-1"]
[cljsjs/react-dom "18.3.1-1"]
[metasoarous/oz "1.6.0-alpha36"]
[day8.re-frame/tracing "0.6.2"]
[day8.re-frame/re-frame-10x "1.6.0"]
]
:dev-http {
8080 {
:root "public"
:proxy-url "http://localhost:9020"
:use-index-files true
}
}
:builds {
:app {:target :browser
:output-dir "public/app/js"
:asset-path "/app/js"
:modules {:main
{:init-fn pokedex.core/init}}
:devtools
{:preloads [day8.re-frame-10x.preload]}
:dev
{:compiler-options
{:closure-defines
{re-frame.trace.trace-enabled? true
day8.re-frame.tracing.trace-enabled? true}}}}}
}