Initial commit

This commit is contained in:
Bianca Fürstenau 2025-02-09 08:22:57 +01:00
commit 96033b4b9f
15 changed files with 6300 additions and 0 deletions

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

@ -0,0 +1,33 @@
{
"$schema": "https://schema.tauri.app/config/2",
"productName": "bkbh",
"version": "0.1.0",
"identifier": "de.mathebau.bkbh",
"build": {
"frontendDist": "../src"
},
"app": {
"withGlobalTauri": true,
"windows": [
{
"title": "bkbh",
"width": 800,
"height": 600
}
],
"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"
]
}
}