mirror of
https://github.com/leptos-rs/leptos
synced 2024-11-10 06:44:17 +00:00
Disable SSR macr until node ID generation is done
This commit is contained in:
parent
6e4448dae6
commit
e3e0460371
1 changed files with 3 additions and 1 deletions
|
@ -233,7 +233,9 @@ pub fn view(tokens: TokenStream) -> TokenStream {
|
|||
Ok(nodes) => render_view(
|
||||
&proc_macro2::Ident::new(&cx.to_string(), cx.span().into()),
|
||||
&nodes,
|
||||
Mode::default(),
|
||||
// swap to Mode::default() to use faster SSR templating
|
||||
Mode::Client
|
||||
//Mode::default(),
|
||||
),
|
||||
Err(error) => error.to_compile_error(),
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue