forked from manuelernestog/weektodo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvue.config.js
More file actions
26 lines (26 loc) · 705 Bytes
/
vue.config.js
File metadata and controls
26 lines (26 loc) · 705 Bytes
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
26
module.exports = {
pluginOptions: {
electronBuilder: {
nodeIntegration: true,
customFileProtocol: './',
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"],
},
},
},
}
};