-
Notifications
You must be signed in to change notification settings - Fork 2
/
shadow-cljs.edn
23 lines (19 loc) · 1.21 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
{: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 [cljs-reframe-template.core]
:init-fn cljs-reframe-template.core/init}}
:devtools {
:http-port 8021
:http-root "resources/public/"
:after-load cljs-reframe-template.core/re-render
:preloads [devtools.preload shadow.remote.runtime.cljs.browser]}}}}