-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathshadow-cljs.edn
More file actions
33 lines (28 loc) · 852 Bytes
/
Copy pathshadow-cljs.edn
File metadata and controls
33 lines (28 loc) · 852 Bytes
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
;; shadow-cljs configuration
{:source-paths
["src/cljs"]
:dependencies
[
[reagent "0.9.0-SNAPSHOT"]
[datascript "0.18.4"]
[datascript-transit "0.3.0"]
[com.taoensso/timbre "4.10.0"]
[thheller/shadow-cljsjs "0.0.16"]
]
:builds
{
:app {:target :browser
:output-dir "resources/public/js/compiled"
:asset-path "/js/compiled"
:modules
{:main {:init-fn datascript-firebase.core/main}}
:compiler-options {:optimizations :advanced
:infer-externs :auto
}
:devtools
{:autoload true
:before-load datascript-firebase.core/destroy
:after-load datascript-firebase.core/reload
:http-handler shadow.http.push-state/handle
:http-root "resources/public"
:http-port 8080}}}}