pmme/pmme-ui/shadow-cljs.edn
Joseph Ferano f850e86b2f 🌐️ pmme-ui: Refactor admin/sensors split into single core module
- 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
2025-07-12 13:31:43 +07:00

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}}}}