Aventuras/src-tauri/tauri.conf.json
2026-02-10 18:57:35 +01:00

51 lines
1.2 KiB
JSON

{
"$schema": "https://schema.tauri.app/config/2",
"productName": "Aventuras",
"version": "0.7.0-pre.1",
"identifier": "com.karelian.aventura",
"build": {
"beforeDevCommand": "npm run dev",
"devUrl": "http://localhost:1420",
"beforeBuildCommand": "npm run build",
"frontendDist": "../build"
},
"app": {
"windows": [
{
"title": "Aventuras",
"width": 1280,
"height": 800,
"minWidth": 800,
"minHeight": 600
}
],
"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"
],
"createUpdaterArtifacts": true,
"linux": {
"appimage": {
"bundleMediaFramework": true
}
}
},
"plugins": {
"updater": {
"endpoints": [
"https://github.com/unkarelian/Aventuras/releases/latest/download/latest.json"
],
"pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IDJCNUQyM0I1NzM5MEQ2MDgKUldRSTFwQnp0U05kSzdwVUV5dEYvc3ZaaS9ZWGJDcytQaERmWDhNSGJ0OTdHVlE1UkttUW5NTy8K"
}
}
}