AI-Studio/runtime/tauri.conf.json

73 lines
1.4 KiB
JSON
Raw Normal View History

2024-03-28 21:26:48 +00:00
{
"build": {
"devPath": "http://localhost:5000",
2024-05-12 12:33:01 +00:00
"distDir": "ui/",
2024-03-28 21:26:48 +00:00
"withGlobalTauri": true
},
"package": {
"productName": "MindWork AI Studio",
2024-03-28 21:26:48 +00:00
"version": "0.1.0"
},
"tauri": {
"allowlist": {
"all": false,
"shell": {
"sidecar": true,
2024-03-28 21:26:48 +00:00
"all": false,
"open": true,
"scope": [
{
"name": "../app/MindWork AI Studio/bin/dist/mindworkAIStudio",
"sidecar": true,
"args": true
}
]
2024-04-05 20:23:01 +00:00
},
"path": {
"all": true
},
"http" : {
"all": true,
"request": true,
"scope": [
"http://localhost"
]
2024-03-28 21:26:48 +00:00
}
},
"windows": [
{
"fullscreen": false,
"resizable": true,
"title": "MindWork AI Studio",
"width": 1920,
"height": 1080
}
],
"security": {
"csp": null,
"dangerousUseHttpScheme": true
2024-03-28 21:26:48 +00:00
},
"bundle": {
"active": true,
"targets": "all",
"identifier": "org.tsommer.mindwork-ai-studio",
"externalBin": [
"../app/MindWork AI Studio/bin/dist/mindworkAIStudio"
],
"macOS": {
"exceptionDomain": "localhost"
},
2024-03-28 21:26:48 +00:00
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
]
2024-05-12 12:33:59 +00:00
},
"updater": {
"active": false
2024-03-28 21:26:48 +00:00
}
}
}