Initial Programm

This commit is contained in:
Joey Pillunat-Klebb | OH5 2025-11-03 15:36:43 +01:00
commit 748128d4d9
17 changed files with 7059 additions and 0 deletions

30
src-tauri/tauri.conf.json Normal file
View file

@ -0,0 +1,30 @@
{
"$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"
]
}
}