外观
TAURI 配置
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"
}
}
}
}
}