restructure for rewrite

This commit is contained in:
2024-05-29 08:15:45 +02:00
parent eae13bd107
commit cc09bb87f8
56 changed files with 1 additions and 1 deletions

View File

@@ -0,0 +1,39 @@
const { defineConfig } = require('@vue/cli-service')
module.exports = defineConfig({
transpileDependencies: true,
pluginOptions: {
electronBuilder: {
nodeIntegration: true,
"appId": "com.janishutz.MusicPlayerV2",
"copyright": "Copyright (c) 2023 MusicPlayer contributors",
"buildVersion": "V2.0.0-dev2",
builderOptions: {
files: [
"**/*",
{
from: "./*",
to: "./*",
filter: [ "**/*" ]
},
{
from: "./public/*",
to: "./*",
filter: [ "**/*" ]
}
],
extraFiles: [
{
from: "./src/client",
to: "./client",
filter: [ "**/*" ]
},
{
from: "./src/config",
to: "./config",
filter: [ "*.config.json" ]
}
]
}
}
}
})