This repository was archived by the owner on Sep 30, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshadow-cljs.edn
More file actions
28 lines (26 loc) · 1.48 KB
/
shadow-cljs.edn
File metadata and controls
28 lines (26 loc) · 1.48 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
{
;; :lein true
:source-paths ["src" "test"]
:dependencies [[org.clojure/clojure "1.11.1"]
[org.clojure/clojurescript "1.11.60"]
[arttuka/reagent-material-ui "5.11.12-0" :exclusions [arttuka/reagent-material-ui-js]]
[reagent "1.2.0" :exclusions [cljsjs/react cljsjs/react-dom cljsjs/react-dom-server]]
[metosin/reitit "0.7.0-alpha5"]
[cljs-ajax "0.8.4"]
;; [thheller/shadow-cljs "2.25.2" :exclusions [com.google.javascript/closure-compiler-unshaded]]
[cider/cider-nrepl "0.34.0"]
[com.google.javascript/closure-compiler-unshaded "v20230228"]
]
:dev-http {8000 "resources/public"}
:builds {:app {:target :browser
:output-dir "resources/public/js"
:asset-path "/js"
:modules {:app {:init-fn mailman.core/init!}}
:devtools {:devtools-url "http://localhost:9630"
;; :preloads [devtools.preload
;; ;; day8.re-frame-10x.preload
;; ]
}
:compiler-options {:source-map true
:closure-defines {re-frame.trace.trace-enabled? true
day8.re-frame.tracing.trace-enabled? true}}}}}