-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathshadow-cljs.edn
28 lines (24 loc) · 1.07 KB
/
shadow-cljs.edn
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
;; shadow-cljs configuration
{:source-paths
["src/main"
"src/stories"]
:dependencies
[[reagent "1.1.0"]
[re-frame "1.2.0"]
[arttuka/reagent-material-ui "5.0.0-0"]]
:dev-http {8080 "public"}
:builds {:app {:target :browser
:output-dir "public/js"
:asset-path "/js"
:modules {:main {:init-fn app.core/init}}
:devtools {:after-load app.core/start}}
:app-with-amplify {:target :browser
:output-dir "public/js"
:asset-path "/js"
:js-options {:js-provider :external
:external-index "target/index.js"}
:modules {:main {:init-fn app.amplified.core/init}}
:devtools {:after-load app.amplified.core/start}}
:stories {:target :npm-module
:ns-regexp "-stories$"
:output-dir "public/js/stories"}}}