-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshadow-cljs.edn
More file actions
42 lines (36 loc) · 892 Bytes
/
shadow-cljs.edn
File metadata and controls
42 lines (36 loc) · 892 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
34
35
36
37
38
39
40
41
42
{:nrepl {:port 8777}
:jvm-opts ["-Xmx1G"]
:source-paths ["src" "test"]
:dependencies
[[reagent "1.1.1"]
[re-frame "1.3.0"]
[tick/tick "0.6.2"]
[binaryage/devtools "1.0.7"]
[cider/cider-nrepl "0.28.4"]]
:dev-http
{8280 "resources/public"
8290 "target/browser-test"}
:builds
{:app
{:target :browser
:output-dir "resources/public/js/compiled"
:asset-path "js/compiled"
:modules
{:app {:init-fn smyrf.core/init}}
:devtools
{:preloads [devtools.preload]
:external-config
{:devtools/config {
:features-to-install [:formatters :hints]
:fn-symbol "F"
:print-config-overrides true
}}}
:dev
{:compiler-options
{:closure-defines
{ }}}}
:release
{:target :browser
:output-dir "app"
:modules
{:app {:init-fn smyrf.core/init}}}}}