Bootstrap tauri app in client

This commit is contained in:
Mathias Wagner
2025-09-09 14:25:09 +02:00
parent 3bb2dcabaf
commit 87efa1cf0e
31 changed files with 6612 additions and 0 deletions

View File

@@ -0,0 +1,35 @@
{
"$schema": "https://schema.tauri.app/config/2",
"productName": "client",
"version": "0.1.0",
"identifier": "dev.gnm.arkendro-client",
"build": {
"beforeDevCommand": "pnpm dev",
"devUrl": "http://localhost:1420",
"beforeBuildCommand": "pnpm build",
"frontendDist": "../dist"
},
"app": {
"windows": [
{
"title": "client",
"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"
]
}
}