diff options
author | 2025-04-26 14:57:41 +0100 | |
---|---|---|
committer | 2025-04-26 14:57:41 +0100 | |
commit | 0e902e1f0a56e2f59cb91065a0ad8600631a1e49 (patch) | |
tree | 278db82117155bcded77e746e192bf523ef890fd /src/main.rs | |
parent | b1fc29669b54d544e02d2d73b8dc841d43a5c92a (diff) | |
download | macaw-web-0e902e1f0a56e2f59cb91065a0ad8600631a1e49.tar.gz macaw-web-0e902e1f0a56e2f59cb91065a0ad8600631a1e49.tar.bz2 macaw-web-0e902e1f0a56e2f59cb91065a0ad8600631a1e49.zip |
before removing leptos-query
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs index 8b89d4d..fd4a1de 100644 --- a/src/main.rs +++ b/src/main.rs @@ -2,5 +2,8 @@ use leptos::prelude::*; use macaw_web::App; fn main() { + tracing_wasm::set_as_global_default(); + console_error_panic_hook::set_once(); + leptos::mount::mount_to_body(App) } |