This commit is contained in:
2024-01-10 18:49:07 +11:00
parent eb242ae4af
commit bfee31c0db
29 changed files with 83 additions and 235 deletions

27
vue.config.js Normal file
View File

@@ -0,0 +1,27 @@
module.exports = {
pluginOptions: {
electronBuilder: {
nodeIntegration: true,
"appId": "com.janishutz.smuL",
"copyright": "Copyright (c) 2023 SimpleMediaUpscalerLite contributors",
"buildVersion": "V2.0.0-dev2",
builderOptions: {
files: [
"**/*",
{
from: "./*",
to: "./*",
filter: [ "**/*" ]
}
],
extraFiles: [
{
from: "./lib",
to: "./",
filter: [ "**/*" ]
}
]
}
}
}
}