converse-tauri/src-tauri/tauri.conf.json

76 lines
1.6 KiB
JSON
Raw Permalink Normal View History

2022-09-30 21:53:45 -04:00
{
"build": {
"beforeBuildCommand": "true",
"beforeDevCommand": "cd dist && python -m http.server 8080",
"devPath": "http://127.0.0.1:8080/",
"distDir": "../dist",
"withGlobalTauri": true
},
"package": {
"productName": "Converse Tauri",
"version": "0.1.0"
},
"tauri": {
"allowlist": {
"all": true,
"http": {
"all": true,
"request": true,
"scope": ["https://**"]
}
2022-09-30 21:53:45 -04:00
},
2022-10-01 00:08:42 -04:00
"systemTray": {
"iconPath": "icons/icon.png",
"iconAsTemplate": true
},
2022-09-30 21:53:45 -04:00
"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": "best.moparisthe.converse",
"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": "Converse",
"width": 800
}
]
}
}