Files
drop-app/src-tauri/tauri.conf.json
2025-01-20 23:13:49 +11:00

47 lines
981 B
JSON

{
"$schema": "https://schema.tauri.app/config/2.0.0",
"productName": "Drop Desktop Client",
"version": "0.2.0-beta-prerelease-1",
"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", "appimage"],
"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": []
}
}