blowater/src-tauri/tauri.conf.json
2023-08-03 14:46:49 +08:00

63 lines
1.6 KiB
JSON

{
"build": {
"beforeBuildCommand": "cd UI && mkae bundle-app",
"beforeDevCommand": "cd UI && make app",
"devPath": "http://localhost:4507",
"distDir": "UI/deploy",
"withGlobalTauri": true
},
"package": {
"productName": "blowater",
"version": "0.1.0"
},
"tauri": {
"allowlist": {
"all": false
},
"bundle": {
"active": true,
"category": "DeveloperTool",
"copyright": "",
"deb": {
"depends": []
},
"externalBin": [],
"icon": [
"../UI/deploy/logo.png"
],
"identifier": "com.tauri.dev",
"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
},
"windows": [
{
"fullscreen": false,
"height": 600,
"resizable": true,
"title": "Blowater",
"width": 800
}
]
}
}