Hi, I have a problem with bundling my app. Launching the command dx bundle --platform desktop --package-types "deb" , I create the deb. When I launch my program, it starts without any css.
#[component]
pub fn app() -> Element {
rsx! {
document::Link { rel: "icon", href: FAVICON }
document::Link { rel: "stylesheet", href: TAILWIND_CSS }
document::Link { rel: "stylesheet", href: STYLES_CSS }
Router::<Route> {}
}
}
I have loaded in this way the css.
Dioxus 0.6.1
Dioxus-desktop: 0.6.1
Cargo.toml extract:
[features]
default = ["desktop"]
web = ["dioxus/web"]
desktop = ["dioxus/desktop"]
mobile = ["dioxus/mobile"]
[profile]
[profile.wasm-dev]
inherits = "dev"
opt-level = 1
[profile.server-dev]
inherits = "dev"
[profile.android-dev]
inherits = "dev"
(continue...)