AI-Studio/runtime/tauri.conf.json

45 lines
855 B
JSON
Raw Normal View History

2024-03-28 21:26:48 +00:00
{
"build": {
"devPath": "http://localhost:5000",
"distDir": "http://localhost:5000",
"withGlobalTauri": true
},
"package": {
"productName": "mindwork-ai-studio",
"version": "0.1.0"
},
"tauri": {
"allowlist": {
"all": false,
"shell": {
"all": false,
"open": true
}
},
"windows": [
{
"fullscreen": false,
"resizable": true,
"title": "MindWork AI Studio",
"width": 1920,
"height": 1080
}
],
"security": {
"csp": null
},
"bundle": {
"active": true,
"targets": "all",
"identifier": "org.tsommer.mindwork-ai-studio",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
]
}
}
}