Browse Source

fix: enable desktop devtol

Jonathan Kelley 3 years ago
parent
commit
7ce34ad97e
1 changed files with 4 additions and 0 deletions
  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());
             }