-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathvue.config.js
41 lines (41 loc) · 1.3 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
const path = require('path')
module.exports = {
publicPath: './',
assetsDir: './asset',
outputDir: 'blg',
// 修改默认的入口
pages: {
index: {
entry: 'examples/main.js',
template: 'public/index.html',
filename: 'index.html'
}
},
chainWebpack: config => {
// vue默认@指向src目录,这里要修正为examples,另外新增一个~指向packages
config.resolve.alias
.set('@', path.resolve('examples'))
.set('~', path.resolve('packages'));
// lib目录是组件库最终打包好存放的地方,不需要eslint检查
// examples/docs是存放md文档的地方,也不需要eslint检查
config.module
.rule('eslint')
.exclude.add(path.resolve('lib'))
.end()
.exclude.add(path.resolve('examples/docs'))
.end();
// packages和examples目录需要加入编译
config.module
.rule('js')
.include.add(/packages/)
.end()
.include.add(/examples/)
.end()
.use('babel')
.loader('babel-loader')
.tap(options => {
// 修改它的选项==>
return options;
});
}
};