1
0
Jonathan Kelley 3 жил өмнө
parent
commit
bad3616

+ 1 - 1
packages/desktop/src/index.html

@@ -15,4 +15,4 @@
 <script type="text/javascript" src="index.js">
 <script type="text/javascript" src="index.js">
 </script>
 </script>
 
 
-</html>
+</html>

+ 2 - 2
packages/desktop/src/lib.rs

@@ -174,7 +174,7 @@ pub fn launch_with_props<P: 'static + Send>(
 
 
                 let mut webview = WebViewBuilder::new(window)
                 let mut webview = WebViewBuilder::new(window)
                     .unwrap()
                     .unwrap()
-                    .with_url("wry://index.html/")
+                    .with_url("dioxus://index.html/")
                     .unwrap()
                     .unwrap()
                     .with_rpc_handler(move |_window: &Window, req: RpcRequest| {
                     .with_rpc_handler(move |_window: &Window, req: RpcRequest| {
                         match req.method.as_str() {
                         match req.method.as_str() {
@@ -200,7 +200,7 @@ pub fn launch_with_props<P: 'static + Send>(
                             wry::http::ResponseBuilder::new()
                             wry::http::ResponseBuilder::new()
                                 .mimetype("text/html")
                                 .mimetype("text/html")
                                 .body(include_bytes!("./index.html").to_vec())
                                 .body(include_bytes!("./index.html").to_vec())
-                        } else if path == "index.js" {
+                        } else if path.trim_end_matches("/") == "index.html/index.js" {
                             wry::http::ResponseBuilder::new()
                             wry::http::ResponseBuilder::new()
                                 .mimetype("text/javascript")
                                 .mimetype("text/javascript")
                                 .body(include_bytes!("./index.js").to_vec())
                                 .body(include_bytes!("./index.js").to_vec())