Skip to content

Commit 311de1d

Browse files
committed
fix migration bug
1 parent 4b601d5 commit 311de1d

File tree

1 file changed

+16
-18
lines changed

1 file changed

+16
-18
lines changed

vue.config.js

Lines changed: 16 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,22 @@
11
module.exports = {
22
pluginOptions: {
33
electronBuilder: {
4+
nodeIntegration: true,
45
builderOptions: {
5-
"productName": "Devdocs",
6-
"appId": "com.gengjiawen.devdocs",
7-
"mac": {
8-
"icon": "build/icons/icon.icns"
6+
productName: 'Devdocs',
7+
appId: 'com.gengjiawen.devdocs',
8+
mac: {
9+
icon: 'build/icons/icon.icns',
910
},
10-
"win": {
11-
"icon": "build/icons/icon.ico"
11+
win: {
12+
icon: 'build/icons/icon.ico',
1213
},
13-
"linux": {
14-
"icon": "build/icons",
15-
"category": "Development",
16-
"target": [
17-
"AppImage",
18-
"deb"
19-
]
20-
}
21-
}
22-
}
23-
}
24-
}
14+
linux: {
15+
icon: 'build/icons',
16+
category: 'Development',
17+
target: ['AppImage', 'deb'],
18+
},
19+
},
20+
},
21+
},
22+
}

0 commit comments

Comments
 (0)