-
Notifications
You must be signed in to change notification settings - Fork 5
/
shadow-cljs.edn
23 lines (21 loc) · 1.24 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
{:deps {:aliases [:dev]}
:nrepl {:port 9000}
:jvm-opts ["-Xmx2G"]
:builds {:main {:target :browser
:output-dir "resources/public/js/main"
:asset-path "/js/main"
:dev {:compiler-options {:external-config {:guardrails {}}}}
:modules {:main {:init-fn com.example.client/init}}
:js-options {:resolve
{
;; for performance checking during dev
;;"react-dom" {:target :npm
;;:require "react-dom/cjs/react-dom.production.min.js"}
;;"react" {:target :npm
;;:require "react/cjs/react.production.min.js"}
;; Make js-joda-timezone a reasonable build size
"js-joda-timezone"
{:target :npm
:require "js-joda-timezone/dist/js-joda-timezone-10-year-range.min.js"}}}
:devtools {:preloads [com.fulcrologic.fulcro.inspect.preload]
:after-load com.example.client/refresh}}}}