Преглед изворни кода

feat: add feature flag for liveview in lib

Jonathan Kelley пре 3 година
родитељ
комит
014eb974f7
1 измењених фајлова са 3 додато и 0 уклоњено
  1. 3 0
      src/lib.rs

+ 3 - 0
src/lib.rs

@@ -14,6 +14,9 @@ pub use dioxus_ssr as ssr;
 #[cfg(feature = "web")]
 pub use dioxus_web as web;
 
+#[cfg(feature = "liveview")]
+pub use dioxus_liveview as liveview;
+
 #[cfg(feature = "desktop")]
 pub use dioxus_desktop as desktop;