mirror of
https://github.com/janishutz/MusicPlayerV2.git
synced 2025-11-25 13:04:23 +00:00
make it work for build ready
This commit is contained in:
@@ -1,4 +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" ]
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user