-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvue.config.js
43 lines (41 loc) · 1.03 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
const path = require('path')
function resolve (dir) {
return path.join(__dirname, dir)
}
module.exports = {
publicPath: process.env.NODE_ENV === 'production' ? '/vue-tab-carousel/' : '/',
css: { extract: false },
chainWebpack: config => {
const svgIconRule = config.module.rule('svg-icon')
const svgRule = config.module.rule('svg')
svgIconRule
.test(/\.svg$/)
.include
.add(resolve('src/icons'))
.end()
.use('svg-sprite-loader')
.loader('svg-sprite-loader')
.options({
symbolId: 'icon-[name]'
})
.end()
svgRule
.exclude
.add(resolve('src/icons'))
config.resolve.alias
.set('example', resolve('example'))
.set('package', resolve('package'))
// 扩展 webpack 配置,使 packages 加入编译
config.module
.rule('js')
.include
.add(/src/)
.end()
.use('babel')
.loader('babel-loader')
.tap(options => {
// 修改它的选项...
return options
})
}
}