-
Notifications
You must be signed in to change notification settings - Fork 0
/
vue.config.js
58 lines (56 loc) · 1.36 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
56
57
58
const path = require('path')
function resolve (dir) {
return path.join(__dirname, dir)
}
module.exports = {
publicPath: './',
assetsDir: 'assets',
outputDir: 'dist',
devServer: {
// can be overwritten by process.env.HOST
host: '0.0.0.0',
port: 7895
},
chainWebpack: config => {
// 路径别名,如用“@”指代“src”等
// Path alias, such as "@" for "src", etc.
config.resolve.alias
.set('@', resolve('src'))
.set('src', resolve('src'))
.set('static', resolve('src/assets'))
.set('views', resolve('src/views'))
.set('svg', resolve('src/assets/svg'))
.set('components', resolve('src/components'))
// svg config
const svgRule = config.module.rule('svg')
svgRule.uses.clear()
svgRule.use('svg-sprite-loader').loader('svg-sprite-loader')
.options({
symbolId: 'icon-[name]'
})
},
pluginOptions: {
electronBuilder: {
builderOptions: {
extraResources: {
from: './public/resources',
to: './'
},
win: {
icon: './public/app.ico'
},
mac: {
icon: './public/app.png'
},
productName: 'vue-cli-electron-template'
}
},
// i18n config
i18n: {
locale: 'zh',
fallbackLocale: 'en',
localeDir: 'locales',
enableInSFC: false
}
}
}