-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathvue.config.js
48 lines (43 loc) · 979 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
44
45
46
47
48
module.exports = {
lintOnSave: true,
devServer: {
open: true,
// https: true,
disableHostCheck: true,
watchOptions: {
ignored: /node_modules/,
poll: 1000
},
proxy: 'https://networks.swap.io'
},
css: {
loaderOptions: {
scss: {
prependData: `
@import "~@/assets/scss/vars";
@import "~@/assets/scss/media";
@import "~@/assets/scss/functions";
@import "~@/assets/scss/theme-variable";
`
}
}
},
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')
}
}