Fix: Add embed-ui to default features

Production binaries should embed UI assets by default to avoid
requiring external ui/suite folder in deployment.

This ensures botserver binary contains all HTMX, HTML, CSS, and JS
assets needed for the web interface.
This commit is contained in:
Rodrigo Rodriguez (Pragmatismo) 2026-02-05 22:52:12 -03:00
parent 5cedd9c379
commit 373957cb25

View file

@ -10,7 +10,7 @@ features = ["database", "i18n"]
[features]
# ===== DEFAULT =====
default = ["chat", "automation", "drive", "tasks", "cache", "directory", "llm", "crawler"]
default = ["chat", "automation", "drive", "tasks", "cache", "directory", "llm", "crawler", "embed-ui"]
# ===== CORE INFRASTRUCTURE (Can be used standalone) =====
scripting = ["dep:rhai"]