forked from swaponline/swap.io-keys
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vue.config.js
43 lines (38 loc) · 836 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
32
33
34
35
36
37
38
39
40
41
42
43
module.exports = {
lintOnSave: true,
devServer: {
open: true,
// https: true,
disableHostCheck: true,
watchOptions: {
ignored: /node_modules/,
poll: 1000
}
// proxy: ''
},
css: {
loaderOptions: {
scss: {
prependData: '@import "~@/assets/scss/vars"; @import "~@/assets/scss/media";'
}
}
},
transpileDependencies: ['vuetify'],
pluginOptions: {
lintStyleOnBuild: false,
stylelint: {},
svgSprite: {
dir: 'src/assets/icons',
test: /\.(svg)(\?.*)?$/,
loaderOptions: {
extract: true,
spriteFilename: 'img/icons.[hash:8].svg'
}
}
},
chainWebpack: config => {
const svgRule = config.module.rule('svg')
svgRule.uses.clear()
svgRule.use('svg-sprite-loader').loader('svg-sprite-loader')
}
}