42 lines
741 B
JavaScript
42 lines
741 B
JavaScript
|
|
module.exports = {
|
|
css: {
|
|
loaderOptions: {
|
|
postcss: {
|
|
plugins: [
|
|
require('autoprefixer')({}),
|
|
],
|
|
},
|
|
},
|
|
},
|
|
pluginOptions: {
|
|
electronBuilder: {
|
|
builderOptions: {
|
|
appId: "dev.kpherox.thedesk-vue",
|
|
win: {
|
|
"target": [
|
|
"nsis",
|
|
"portable",
|
|
],
|
|
},
|
|
nsis: {
|
|
oneClick: false,
|
|
allowToChangeInstallationDirectory: true,
|
|
artifactName: "TheDesk-Vue-setup.${ext}",
|
|
},
|
|
linux: {
|
|
target: [
|
|
"snap",
|
|
],
|
|
category: "Network",
|
|
},
|
|
mac: {
|
|
target: [
|
|
"dmg",
|
|
],
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|