mirror of
https://github.com/Drop-OSS/drop-app.git
synced 2025-11-09 20:12:14 +10:00
56 lines
1.1 KiB
JSON
56 lines
1.1 KiB
JSON
{
|
|
"$schema": "https://schema.tauri.app/config/2.0.0",
|
|
"productName": "drop",
|
|
"version": "0.1.0",
|
|
"identifier": "dev.drop.app",
|
|
"build": {
|
|
"beforeDevCommand": "yarn dev --port 1432",
|
|
"devUrl": "http://localhost:1432",
|
|
"beforeBuildCommand": "yarn generate",
|
|
"frontendDist": "../.output/public"
|
|
},
|
|
"app": {
|
|
"windows": [
|
|
{
|
|
"title": "Drop",
|
|
"width": 1536,
|
|
"height": 864,
|
|
"minWidth": 820,
|
|
"minHeight": 600,
|
|
"decorations": false
|
|
}
|
|
],
|
|
"security": {
|
|
"csp": null
|
|
}
|
|
},
|
|
"plugins": {
|
|
"deep-link": {
|
|
"desktop": {
|
|
"schemes": ["drop"]
|
|
}
|
|
}
|
|
},
|
|
"bundle": {
|
|
"active": true,
|
|
"targets": ["nsis", "deb", "rpm", "dmg"],
|
|
"windows": {
|
|
"nsis": {
|
|
"installMode": "both"
|
|
},
|
|
"webviewInstallMode": {
|
|
"silent": true,
|
|
"type": "embedBootstrapper"
|
|
},
|
|
"wix": null
|
|
},
|
|
"icon": [
|
|
"icons/32x32.png",
|
|
"icons/128x128.png",
|
|
"icons/128x128@2x.png",
|
|
"icons/icon.icns",
|
|
"icons/icon.ico"
|
|
]
|
|
}
|
|
}
|