-
Notifications
You must be signed in to change notification settings - Fork 0
/
vue.config.js
55 lines (54 loc) · 1.55 KB
/
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
const productName = '布丁笔记'
module.exports = {
css: {
loaderOptions: {
sass: {
data: `@import "@/style/element-variables.scss";`
}
}
},
productionSourceMap: false,
lintOnSave: false,
pluginOptions: {
electronBuilder: {
externals: ['got'],
mainProcessFile: 'src/background/background.js',
mainProcessWatch: ['src/background'],
builderOptions: {
productName: productName,
win: {
icon: './public/app/pudding.png',
},
mac: {
icon: './public/app/pudding.png',
},
linux: {
icon: './public/app/pudding.png',
},
asar: true,
nsis: {
oneClick: false,
allowElevation: true,
allowToChangeInstallationDirectory: true,
createDesktopShortcut: true,
createStartMenuShortcut: true,
shortcutName: productName, // 图标名称
}
}
}
},
// configureWebpack: {
// plugins: [
// new MonacoEditorPlugin({
// // https://github.com/Microsoft/monaco-editor-webpack-plugin#options
// // Include a subset of languages support
// // Some language extensions like typescript are so huge that may impact build performance
// // e.g. Build full languages support with webpack 4.0 takes over 80 seconds
// // Languages are loaded on demand at runtime
// // languages: ['markdown', 'javascript', 'css', 'html'],
// features: features,
// languages: ['javascript']
// })
// ]
// }
}