Browse Source

fix: enable desktop devtol

Jonathan Kelley 3 năm trước cách đây
mục cha
commit
7ce34ad97e
1 tập tin đã thay đổi với 4 bổ sung0 xóa
  1. 4 0
      packages/desktop/src/lib.rs

+ 4 - 0
packages/desktop/src/lib.rs

@@ -173,6 +173,10 @@ pub fn launch_with_props<P: 'static + Send>(
                     webview = webview.with_custom_protocol(name, handler)
                 }
 
+                if cfg!(debug_assertions) {
+                    webview = webview.with_dev_tool(true);
+                }
+
                 desktop.webviews.insert(window_id, webview.build().unwrap());
             }