Files
chatbot-ui/src-tauri/tauri.conf.json
T
Mckay Wrigley 65d1af5d06 push
2023-03-22 12:55:39 -06:00

65 lines
1.4 KiB
JSON

{
"build": {
"beforeBuildCommand": "npm run build",
"beforeDevCommand": "npm run dev",
"devPath": "http://localhost:3000",
"distDir": "../dist"
},
"package": {
"productName": "Chatbot UI",
"version": "0.1.0"
},
"tauri": {
"allowlist": {
"all": true,
"http": {
"all": true,
"scope": ["https://**"]
}
},
"bundle": {
"active": true,
"category": "DeveloperTool",
"copyright": "",
"deb": {
"depends": []
},
"externalBin": [],
"icon": ["icons/32x32.png", "icons/128x128.png", "icons/128x128@2x.png", "icons/icon.icns", "icons/icon.ico"],
"identifier": "com.mckaywrigley.chatbotui",
"longDescription": "",
"macOS": {
"entitlements": null,
"exceptionDomain": "",
"frameworks": [],
"providerShortName": null,
"signingIdentity": null
},
"resources": [],
"shortDescription": "",
"targets": "all",
"windows": {
"certificateThumbprint": null,
"digestAlgorithm": "sha256",
"timestampUrl": ""
}
},
"security": {
"csp": null
},
"updater": {
"active": false
},
"macOSPrivateApi": true,
"windows": [
{
"fullscreen": false,
"height": 600,
"resizable": true,
"title": "Chatbot UI",
"width": 800
}
]
}
}