We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b601d5 commit 311de1dCopy full SHA for 311de1d
vue.config.js
@@ -1,24 +1,22 @@
1
module.exports = {
2
pluginOptions: {
3
electronBuilder: {
4
+ nodeIntegration: true,
5
builderOptions: {
- "productName": "Devdocs",
6
- "appId": "com.gengjiawen.devdocs",
7
- "mac": {
8
- "icon": "build/icons/icon.icns"
+ productName: 'Devdocs',
+ appId: 'com.gengjiawen.devdocs',
+ mac: {
9
+ icon: 'build/icons/icon.icns',
10
},
- "win": {
11
- "icon": "build/icons/icon.ico"
+ win: {
12
+ icon: 'build/icons/icon.ico',
13
- "linux": {
14
- "icon": "build/icons",
15
- "category": "Development",
16
- "target": [
17
- "AppImage",
18
- "deb"
19
- ]
20
- }
21
22
23
24
-}
+ linux: {
+ icon: 'build/icons',
+ category: 'Development',
+ target: ['AppImage', 'deb'],
+ },
+}
0 commit comments