Tauri 离线安装程序
要嵌入WebView2引导程序,请将webviewInstallMode
设置为offlineInstaller
。这将增加约127MB的安装程序大小,但允许您的应用程序在没有互联网连接的情况下安装。
tauri.config.json
{
"tauri": {
"bundle": {
"windows": {
"webviewInstallMode": {
"type": "offlineInstaller"
}
}
}
}
}