First implementation of Tauri

This commit is contained in:
Manuel 2024-05-15 10:37:32 +02:00
parent 9db004472a
commit 4ab83071bc
58 changed files with 16247 additions and 46 deletions

View file

@ -0,0 +1,33 @@
{
"productName": "caesar-tauri-angular",
"version": "0.0.0",
"identifier": "com.tauri.dev",
"build": {
"beforeDevCommand": "npm run start -- --host $HOST --public-host $HOST",
"devUrl": "http://localhost:1420",
"beforeBuildCommand": "npm run build",
"frontendDist": "../dist/caesar-tauri-angular/browser"
},
"app": {"windows": [
{
"title": "caesar-tauri-angular",
"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"
]
}
}