thedesk/vue.config.js

42 lines
741 B
JavaScript
Raw Normal View History

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",
],
},
},
},
},
}