Files
bytechat-desktop/src-tauri/tauri.conf.json
rattatwinko 120bddba62
All checks were successful
Build Tauri App (Linux + Windows exe) / build (push) Successful in 12m26s
trying the windows config to bundle webview2loader.dll automatically. im not sure if this works
2025-08-29 01:30:39 +02:00

46 lines
923 B
JSON

{
"$schema": "https://schema.tauri.app/config/2",
"productName": "bytechat-desktop",
"version": "0.1.0",
"identifier": "com.rattatwinko.bytechat-desktop",
"build": {
"frontendDist": "../src"
},
"app": {
"withGlobalTauri": true,
"windows": [
{
"title": "ByteChat",
"width": 600,
"height": 700,
"zoomHotkeysEnabled": false
}
],
"security": {
"csp": null
}
},
"bundle": {
"active": true,
"targets": ["deb", "rpm"],
"icon": [
"icons/icon.ico",
"icons/icon.png"
],
"windows": {
"allowDowngrades": true,
"certificateThumbprint": null,
"digestAlgorithm": null,
"nsis": null,
"signCommand": null,
"timestampUrl": null,
"tsp": false,
"webviewInstallMode": {
"silent": true,
"type": "downloadBootstrapper"
},
"wix": null
}
}
}