This repository has been archived on 2025-11-27. You can view files and clone it, but cannot push or open issues or pull requests.
Files
ircd/src-tauri/tauri.conf.json
2025-11-18 21:48:55 +01:00

34 lines
594 B
JSON

{
"$schema": "https://schema.tauri.app/config/2",
"productName": "ircd",
"version": "0.1.0",
"identifier": "com.rattatwinko.ircd",
"build": {
"frontendDist": "../src"
},
"app": {
"withGlobalTauri": true,
"windows": [
{
"title": "ircd",
"width": 860,
"height": 800
}
],
"security": {
"csp": null
}
},
"bundle": {
"active": true,
"targets": "all",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
]
}
}