Disable SSR macr until node ID generation is done

This commit is contained in:
Greg Johnston 2022-12-14 10:57:37 -05:00
parent 6e4448dae6
commit e3e0460371

View file

@ -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(),
}