54 lines
1.1 KiB
JSON
54 lines
1.1 KiB
JSON
{
|
|
"$schema": "https://schema.tauri.app/config/2",
|
|
"productName": "MiniCloud Sync",
|
|
"version": "0.1.0",
|
|
"identifier": "com.minicloud.sync",
|
|
"build": {
|
|
"beforeDevCommand": "npm run dev",
|
|
"devUrl": "http://localhost:1420",
|
|
"beforeBuildCommand": "npm run build",
|
|
"frontendDist": "../dist"
|
|
},
|
|
"app": {
|
|
"windows": [
|
|
{
|
|
"title": "Mini-Cloud Sync",
|
|
"width": 700,
|
|
"height": 550,
|
|
"resizable": true,
|
|
"center": true
|
|
}
|
|
],
|
|
"security": {
|
|
"csp": null
|
|
}
|
|
},
|
|
"bundle": {
|
|
"active": true,
|
|
"targets": "all",
|
|
"icon": [
|
|
"icons/32x32.png",
|
|
"icons/128x128.png",
|
|
"icons/128x128@2x.png",
|
|
"icons/icon.icns",
|
|
"icons/icon.ico"
|
|
],
|
|
"fileAssociations": [
|
|
{
|
|
"ext": ["cloud"],
|
|
"mimeType": "application/x-minicloud",
|
|
"description": "Mini-Cloud Platzhalter"
|
|
}
|
|
],
|
|
"windows": {
|
|
"nsis": {
|
|
"installerIcon": "icons/icon.ico",
|
|
"headerImage": null,
|
|
"sidebarImage": null,
|
|
"installMode": "both",
|
|
"displayLanguageSelector": false
|
|
}
|
|
}
|
|
}
|
|
}
|