You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
error[E0433]: failed to resolve: use of undeclared crate or module `dioxus_query`
--> src/query/projects.rs:4:5
|
4 | use dioxus_query::prelude::{use_get_query, QueryResult, UseQuery};
| ^^^^^^^^^^^^ use of undeclared crate or module `dioxus_query`
If I understand correctly, the default feature in Cargo.toml is the one being built when no platform is specified to the dx bundle. The two commands above should then produce the same result, since the default feature is set to ["web"].
Problem
Running
works fine. However, running
raises build errors regarding the client-only dependencies, e.g.
Steps To Reproduce
Steps to reproduce the behavior:
Expected behavior
If I understand correctly, the
default
feature in Cargo.toml is the one being built when no platform is specified to thedx bundle
. The two commands above should then produce the same result, since thedefault
feature is set to["web"]
.Environment:
The text was updated successfully, but these errors were encountered: