Add missing electron-builder.json in sample project

This commit is contained in:
softworkz
2026-02-14 21:26:46 +01:00
parent a451e3a599
commit 10679029e8

View File

@@ -0,0 +1,19 @@
{
"$schema": "https://raw.githubusercontent.com/electron-userland/electron-builder/refs/heads/master/packages/app-builder-lib/scheme.json",
"compression": "maximum",
"linux": {
"target": [
"tar.xz"
],
"executableArgs": [ "--no-sandbox" ],
"artifactName": "${name}-${arch}-${version}.${ext}"
},
"win": {
"target": [
{
"target": "portable",
"arch": "x64"
}
]
}
}