update build scripts

This commit is contained in:
2023-06-07 13:26:43 +02:00
parent b79e206f0d
commit 98f2ec28ce
5 changed files with 85 additions and 56 deletions

View File

@@ -1,7 +1,24 @@
module.exports = {
pluginOptions: {
electronBuilder: {
nodeIntegration: true
nodeIntegration: true,
builderOptions: {
files: [
"**/*",
{
from: "./*",
to: "./*",
filter: [ "**/*" ]
}
],
extraFiles: [
{
from: "./lib",
to: "./",
filter: [ "**/*" ]
}
]
}
}
}
}