diff --git a/Cargo.toml b/Cargo.toml index acd66a1e8..cd10bf56c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,7 +10,7 @@ features = ["database", "i18n"] [features] # ===== DEFAULT ===== -default = ["chat", "automation", "drive", "tasks", "cache", "directory", "llm", "crawler", "embed-ui"] +default = ["chat", "automation", "drive", "tasks", "cache", "directory", "llm", "crawler"] # ===== CORE INFRASTRUCTURE (Can be used standalone) ===== scripting = ["dep:rhai"] diff --git a/src/embedded_ui.rs b/src/embedded_ui.rs index 6a09e3049..4a5ac2f5c 100644 --- a/src/embedded_ui.rs +++ b/src/embedded_ui.rs @@ -13,8 +13,8 @@ use std::path::Path; #[cfg(feature = "embed-ui")] #[derive(RustEmbed)] -#[folder = "../botui/ui/suite/"] -#[prefix = ""] +#[folder = "ui"] +#[prefix = "suite"] struct EmbeddedUi; #[cfg(feature = "embed-ui")]