mirror of
https://github.com/Drop-OSS/drop-app.git
synced 2025-11-09 20:12:14 +10:00
39 lines
786 B
JSON
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"
|
|
]
|
|
}
|
|
}
|