zebra-launcher/src-tauri/tauri.conf.json

37 lines
681 B
JSON

{
"productName": "Zebra",
"version": "0.0.0",
"identifier": "zebra.app",
"build": {
"beforeDevCommand": "pnpm dev",
"devUrl": "http://localhost:1420",
"beforeBuildCommand": "pnpm build",
"frontendDist": "../dist"
},
"app": {
"windows": [
{
"title": "Zebra",
"width": 1000,
"height": 800
}
],
"security": {
"csp": null
}
},
"bundle": {
"active": true,
"targets": "all",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
],
"externalBin": [
"binaries/zebrad-v1.7.0"
]
}
}