upub-web 0.6.0

web frontend for upub
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
fn main() {
	console_error_panic_hook::set_once();

	tracing_subscriber::fmt()
		.with_writer(
			tracing_subscriber_wasm::MakeConsoleWriter::default()
				.map_trace_level_to(tracing::Level::DEBUG)
		)
		.with_ansi(false)
		.without_time()
		.init();

	leptos::mount::mount_to_body(upub_web::App);
}