forked from manuelernestog/weektodo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvue.config.js
25 lines (25 loc) · 836 Bytes
/
vue.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
module.exports = {
pluginOptions: {
electronBuilder: {
nodeIntegration: true,
builderOptions: {
appId: "weektodo-app.netlify.app",
productName: "WeekToDo",
publish: ['github'],
linux: {
category: "Utility",
description: "Free and Open Source Minimalist Weekly Planner and To Do list App focused on privacy.",
target: ["deb", "rpm","pacman","AppImage"],
icon: "build/icon.icns"
},
win: {
target: ["nsis"],
},
mac: {
category: "public.app-category.productivity",
target: ["dmg","pkg"]
}
}
}
}
}