Skip to content

TAURI 配置

官网

Rust

tauri.conf.json

Windows 安装程序语言

json
{
  "tauri": {
    "bundle": {
      "windows": {
        "wix": {
          "language": "zh-CN"
        }
      }
    }
  }
}
json
{
  "tauri": {
    "bundle": {
      "windows": {
        "wix": {
          "language": ["zh-CN", "en-US"]
        }
      }
    }
  }
}

Windows Webview2 安装模式

json
{
  "tauri": {
    "bundle": {
      "windows": {
        "webviewInstallMode": {
          "type": "downloadBootstrapper"
        }
      }
    }
  }
}
json
{
  "tauri": {
    "bundle": {
      "windows": {
        "webviewInstallMode": {
          "type": "embedBootstrapper"
        }
      }
    }
  }
}
json
{
  "tauri": {
    "bundle": {
      "windows": {
        "webviewInstallMode": {
          "type": "offlineInstaller"
        }
      }
    }
  }
}