trepa-uploader/src-tauri/tauri.conf.json

37 lines
654 B
JSON
Raw Normal View History

2024-08-11 22:33:12 +02:00
{
"build": {
"beforeDevCommand": "bun run dev",
"beforeBuildCommand": "bun run build",
"frontendDist": "../dist",
"devUrl": "http://localhost:1420"
},
"bundle": {
"active": true,
"targets": "all",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
],
"createUpdaterArtifacts": "v1Compatible"
},
"productName": "trepa-uploader",
"version": "0.0.0",
"identifier": "com.qpismont.trepauploader",
"plugins": {},
"app": {
"security": {
"csp": null
},
"windows": [
{
"title": "trepa-uploader",
"width": 800,
"height": 600
}
]
}
}