J.A.R.V.I.S-py/crates/jarvis-gui/tauri.conf.json

45 lines
1.2 KiB
JSON

{
"$schema": "https://schema.tauri.app/config/2",
"productName": "jarvis-app",
"version": "0.0.3",
"identifier": "com.priler.jarvis",
"build": {
"beforeDevCommand": "npm run dev",
"beforeBuildCommand": "npm run build",
"devUrl": "http://localhost:1420",
"frontendDist": "../../frontend/dist/client"
},
"app": {
"withGlobalTauri": false,
"security": {
"csp": null
},
"windows": [
{
"fullscreen": false,
"resizable": false,
"title": "Jarvis Voice Assistant",
"width": 550,
"height": 800
}
]
},
"bundle": {
"active": true,
"icon": [
"../../resources/icons/32x32.png",
"../../resources/icons/128x128.png",
"../../resources/icons/128x128@2x.png",
"../../resources/icons/icon.icns",
"../../resources/icons/icon.ico"
],
"targets": "all",
"resources": {
"../../resources/commands": "resources/commands",
"../../resources/sound": "resources/sound",
"../../resources/rustpotter": "resources/rustpotter",
"../../resources/vosk": "resources/vosk",
"../../resources/keywords": "resources/keywords"
}
}
}