init Tauri

This commit is contained in:
2026-05-18 19:06:52 +02:00
parent 096bd76c21
commit e6a6949e4a
31 changed files with 5299 additions and 1930 deletions
+40
View File
@@ -0,0 +1,40 @@
{
"$schema": "../node_modules/@tauri-apps/cli/config.schema.json",
"productName": "court-pilot",
"version": "0.1.0",
"identifier": "com.tauri.dev",
"build": {
"frontendDist": "../wwww",
"devUrl": "http://localhost:8103",
"beforeDevCommand": "npm start",
"beforeBuildCommand": "ionic build"
},
"app": {
"windows": [
{
"title": "Court Pilot",
"width": 800,
"height": 600,
"resizable": true,
"fullscreen": false
}
],
"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"
],
"android": {
"debugApplicationIdSuffix": ".debug"
}
}
}