-
Notifications
You must be signed in to change notification settings - Fork 1
/
vue.config.js
31 lines (25 loc) · 862 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
26
27
28
29
30
31
// const nodeExternals = require('webpack-node-externals')
module.exports = {
chainWebpack: config => {
// config.externals(nodeExternals())
// @see https://vuetifyjs.com/en/customization/sass-variables
// ["vue-modules", "vue", "normal-modules", "normal"].forEach((match) => {
// config.module.rule('scss').oneOf(match).use('sass-loader')
// .tap(opt => Object.assign(opt, { data: `@import '~@/sass/main.scss';` }))
// })
},
pluginOptions: {
electronBuilder: {
builderOptions: {
appId: "com.tcmanager.app",
win: {
target: ["msi"]
},
productName: 'TeslaCam Manager'
},
files: [
],
mainProcessWatch: ['src/server/']
}
}
}