Macro leptos_dom::is_dev

source ·
macro_rules! is_dev {
    () => { ... };
}
Expand description

A shorthand macro to test whether this is a debug build.

if is_dev!() {
  // log something or whatever
}