2024-04-14 06:45:51 +02:00
|
|
|
fn main() {
|
|
|
|
console_error_panic_hook::set_once();
|
2024-04-16 06:34:50 +02:00
|
|
|
|
2024-05-23 05:53:05 +02:00
|
|
|
tracing_subscriber::fmt()
|
|
|
|
.with_writer(
|
|
|
|
tracing_subscriber_wasm::MakeConsoleWriter::default()
|
|
|
|
.map_trace_level_to(tracing::Level::DEBUG)
|
|
|
|
)
|
|
|
|
.with_ansi(false)
|
|
|
|
.without_time()
|
|
|
|
.init();
|
|
|
|
|
2024-04-17 22:07:47 +02:00
|
|
|
leptos::mount_to_body(upub_web::App);
|
2024-04-14 06:45:51 +02:00
|
|
|
}
|