Function set_verso_path

Source
pub fn set_verso_path(path: impl Into<PathBuf>)
Expand description

Sets the Verso executable path to ues for the webviews, must be called before you create any webviews if you don’t have the externalBin setup

§Example:

fn main() {
    tauri_runtime_verso::set_verso_path("../verso/target/debug/versoview");
    tauri_runtime_verso::builder()
        .run(tauri::generate_context!())
        .unwrap();
}