sistema-de-chamados/apps/desktop/src-tauri/tauri.conf.json
2025-11-05 20:49:19 -03:00

63 lines
1.6 KiB
JSON

{
"$schema": "https://schema.tauri.app/config/2",
"productName": "Raven",
"version": "0.1.6",
"identifier": "br.com.esdrasrenan.sistemadechamados",
"build": {
"beforeDevCommand": "bun run dev",
"devUrl": "http://localhost:1420",
"beforeBuildCommand": "bun run build",
"frontendDist": "../dist"
},
"app": {
"withGlobalTauri": true,
"windows": [
{
"title": "Raven",
"width": 1100,
"height": 720,
"resizable": true,
"fullscreen": false,
"maximized": true
}
],
"security": {
"csp": null
}
},
"plugins": {
"updater": {
"endpoints": [
"https://raw.githubusercontent.com/esdrasrenan/sistema-de-chamados/refs/heads/main/apps/desktop/public/latest.json"
],
"dialog": true,
"active": true,
"pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IDE5MTMxRTQwODA1NEFCRjAKUldUd3ExU0FRQjRUR2VqcHBNdXhBMUV3WlM2cFA4dmNnNEhtMUJ2a3VVWVlTQnoxbEo5YUtlUTMK"
}
},
"bundle": {
"active": true,
"createUpdaterArtifacts": true,
"targets": ["nsis", "deb", "rpm"],
"icon": [
"icons/icon.ico",
"icons/icon.icns",
"icons/icon.png",
"icons/Raven.png"
],
"windows": {
"webviewInstallMode": {
"type": "downloadBootstrapper",
"silent": true
},
"nsis": {
"displayLanguageSelector": true,
"installerIcon": "icons/icon.ico",
"headerImage": "icons/nsis-header.bmp",
"sidebarImage": "icons/nsis-sidebar.bmp",
"installMode": "perMachine",
"languages": ["PortugueseBR"]
}
}
}
}