Explorar o código

Fix opened browser blocking dx serve (#3818)

wdcocq hai 3 meses
pai
achega
062ea02e07
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      packages/cli/src/serve/handle.rs

+ 1 - 1
packages/cli/src/serve/handle.rs

@@ -356,7 +356,7 @@ impl AppHandle {
             Some(base_path) => format!("/{}", base_path.trim_matches('/')),
             Some(base_path) => format!("/{}", base_path.trim_matches('/')),
             None => "".to_owned(),
             None => "".to_owned(),
         };
         };
-        _ = open::that(format!("{protocol}://{address}{base_path}"));
+        _ = open::that_detached(format!("{protocol}://{address}{base_path}"));
     }
     }
 
 
     /// Use `xcrun` to install the app to the simulator
     /// Use `xcrun` to install the app to the simulator