Files
drop-app/src-tauri/tauri.conf.json
2024-10-08 00:39:42 +11:00

39 lines
786 B
JSON

{
"$schema": "https://schema.tauri.app/config/2.0.0",
"productName": "drop",
"version": "0.1.0",
"identifier": "dev.drop.drop",
"build": {
"beforeDevCommand": "yarn dev",
"devUrl": "http://localhost:3000",
"beforeBuildCommand": "yarn generate",
"frontendDist": "../.output/public"
},
"app": {
"windows": [
{
"title": "drop-app",
"width": 1536,
"height": 864,
"minWidth": 820,
"minHeight": 600,
"decorations": false
}
],
"security": {
"csp": null
}
},
"bundle": {
"active": true,
"targets": ["msi", "deb"],
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
]
}
}