Open will5933 opened 2 months ago
没窗口的时候也有 webview 进程?
tauri::Builder::default() .setup(|app| { let docs_window = tauri::WindowBuilder::new( app, "external", /* the unique window label */ tauri::WindowUrl::External("https://tauri.app/".parse().unwrap()) ).build()?; let local_window = tauri::WindowBuilder::new( app, "local", tauri::WindowUrl::App("index.html".into()) ).build()?; Ok(()) }) .run(tauri::generate_context!()) .expect("error while running app");
用运行时窗口会不会更好一些?
收到反馈,这个需求我们会看一下可行性🌹
Describe the problem
没窗口的时候也有 webview 进程?
Describe the solution you'd like
用运行时窗口会不会更好一些?