gdke/gdke-gui/src-tauri/tauri.conf.json

35 lines
642 B
JSON
Raw Normal View History

{
"productName": "gdke-gui",
"version": "0.1.0",
"identifier": "one.meli.gdke-gui",
"build": {
"beforeDevCommand": "bun run dev",
"devUrl": "http://localhost:1420",
"beforeBuildCommand": "bun run build",
"frontendDist": "../dist"
},
"app": {
"windows": [
{
"title": "gdke-gui",
"width": 800,
"height": 600
}
],
"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"
]
}
}