-
Notifications
You must be signed in to change notification settings - Fork 1
/
shadow-cljs.edn
21 lines (20 loc) · 1.11 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
{:deps {:aliases [:dev :test]}
:nrepl {:port 7002}
:builds {:app {:target :browser
:asset-path "js"
:output-dir "resources/public/js"
:dev {:build-hooks [(teknql.tailwind/start-watch!)]}
:release {:build-hooks [(teknql.tailwind/compile-release!)]}
:tailwind/output "resources/public/app.css"
:tailwind/files {:base-path "./."
:tailwind.css "./resources/tw/style.css"}
:compiler-options {:infer-externs :auto}
:modules {
:main {:entries [mailclient.core]
:init-fn mailclient.core/init}}
:devtools {
:http-port 8021
:http-root "resources/public/"
:after-load mailclient.core/re-render
:preloads [devtools.preload shadow.remote.runtime.cljs.browser]}}
}}