- Merged admin.cljs and sensors.cljs into core.cljs to consolidate UI logic - Added WiFi network management interface with active/inactive status indicators - Improved admin panel with async status checking and visual feedback - Updated shadow-cljs config to use port 3000 and simplified mobile build - Enhanced CSS with utility layer for badge-error class
27 lines
722 B
Clojure
27 lines
722 B
Clojure
{:source-paths
|
|
["src/main"
|
|
"src/test"]
|
|
|
|
:dependencies
|
|
[[no.cjohansen/replicant "2025.03.27"]]
|
|
|
|
:dev-http {3000 "public"}
|
|
|
|
:builds
|
|
{:dev {:target :browser
|
|
:output-dir "public/js"
|
|
:asset-path "/js"
|
|
:modules {:main {:init-fn pmme-ui.shell/main}}}
|
|
|
|
:mobile {:target :browser
|
|
:output-dir "public/js"
|
|
:asset-path "/js"
|
|
:modules {:main {:init-fn pmme-ui.shell/main}}
|
|
:devtools {:devtools-url "http://192.168.110.133:9630"}}
|
|
|
|
:release {:target :browser
|
|
:output-dir "../pmme-mobile/src/js"
|
|
:asset-path "/js"
|
|
:modules {:main {:init-fn pmme-ui.shell/main}}
|
|
:compiler-options {:optimizations :advanced}}}}
|