Files
NextcloudUploadTool/gui/src-tauri/tauri.conf.json
2026-08-23 19:06:34 -07:00

37 lines
743 B
JSON

{
"$schema": "https://schema.tauri.app/config/2",
"productName": "Nextcloud Upload Tool",
"version": "0.1.0",
"identifier": "me.majinnaibu.nut",
"build": {
"beforeDevCommand": "npm run dev",
"devUrl": "http://localhost:1420",
"beforeBuildCommand": "npm run build",
"frontendDist": "../dist"
},
"app": {
"windows": [
{
"label": "main",
"title": "Nextcloud Upload Tool",
"width": 900,
"height": 680
}
],
"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"
]
}
}