-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshadow-cljs.edn
More file actions
22 lines (20 loc) · 913 Bytes
/
shadow-cljs.edn
File metadata and controls
22 lines (20 loc) · 913 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{:dependencies [[reagent "0.8.1"]
[keybind "2.2.0"]]
:source-paths ["src"]
:builds {:main {:target :node-script
:output-to "app/main.js"
:optimizations :simple
:main app.main.core/main}
:bootstrap {:target :bootstrap
:output-dir "app/bootstrap/"
:entries [cljs.js cljs.core]
:exclude #{cljs.js}}
:renderer {:target :browser
:output-dir "app/"
:asset-path "."
:optimizations :simple
:modules {:renderer {:entries [app.renderer.core]}}
:devtools {:http-root "app/"
:http-port 3742
:before-load app.renderer.core/stop
:after-load app.renderer.core/start}}}}