OH5-QR-Generator/src-tauri/tauri.conf.json
Joey Pillunat-Klebb | OH5 748128d4d9 Initial Programm
2025-11-03 15:36:43 +01:00

30 lines
550 B
JSON

{
"$schema": "https://schema.tauri.app/config/2",
"productName": "OH5 QR Code Generator",
"version": "0.1.0",
"identifier": "com.jpk.oh5-qr-generator",
"build": {
"frontendDist": "../src"
},
"app": {
"withGlobalTauri": true,
"windows": [
{
"title": "OH5 QR Code Generator",
"width": 1280,
"height": 700
}
],
"security": {
"csp": null
}
},
"bundle": {
"active": true,
"targets": "all",
"icon": [
"icons/icon.png",
"icons/icon.ico"
]
}
}