Explorar el Código

Fix external links in dioxus desktop

Evan Almloff hace 1 año
padre
commit
cb113cf4b6
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      packages/desktop/src/protocol.rs

+ 1 - 1
packages/desktop/src/protocol.rs

@@ -74,7 +74,7 @@ fn handle_edits_code() -> String {
         interpreter.replace_range(import_start..import_end, "");
     }
 
-    format!("{interpreter}\nconst config = new InterpreterConfig(false);")
+    format!("{interpreter}\nconst config = new InterpreterConfig(true);")
 }
 
 static DEFAULT_INDEX: &str = include_str!("./index.html");