Files
bytechat-desktop/src-tauri/tauri.conf.json
rattatwinko 68741badd8
All checks were successful
Build Tauri App (Linux + Windows exe) / build (push) Successful in 11m9s
Issue 1: Fixed ( Most of it )
2025-08-27 17:29:22 +02:00

33 lines
612 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,
"devtools": false,
"zoomHotkeysEnabled": false
}
],
"security": {
"csp": null
}
},
"bundle": {
"active": true,
"targets": ["deb", "rpm"],
"icon": [
"icons/icon.ico",
"icons/icon.png"
]
}
}