fix path of set_server_url (#2314)

Co-authored-by: =Chung Wong <=wch705@gmail.com>
This commit is contained in:
Chung 2024-04-17 00:18:50 +10:00 committed by GitHub
parent b6d3da2b31
commit c9ab09b348
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -8,7 +8,7 @@ use axum_desktop::*;
fn main() {
// Set the url of the server where server functions are hosted.
#[cfg(not(feature = "server"))]
dioxus::fullstack::prelude::server_fn::set_server_url("http://127.0.0.1:8080");
dioxus::fullstack::prelude::server_fn::client::set_server_url("http://127.0.0.1:8080");
#[cfg(feature = "desktop")]
dioxus::prelude::launch_desktop(app)