mirror of
https://github.com/Drop-OSS/drop-app.git
synced 2025-11-12 07:42:44 +10:00
47 lines
951 B
JSON
47 lines
951 B
JSON
{
|
|
"$schema": "https://schema.tauri.app/config/2.0.0",
|
|
"productName": "Drop Desktop Client",
|
|
"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": {
|
|
"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"
|
|
],
|
|
"externalBin": []
|
|
}
|
|
}
|