forked from g0ngjie/antv-x6-vue2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vue.config.js
51 lines (49 loc) · 1.18 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
const UglifyJsPlugin = require("uglifyjs-webpack-plugin");
const path = require("path");
function resolve(dir) {
return path.join(__dirname, dir);
}
module.exports = {
// 修改 src 为 examples
pages: {
index: {
entry: "examples/main.js",
template: "public/index.html",
filename: "index.html",
},
},
publicPath: './',
outputDir: 'webpage',
chainWebpack(config) {
// 配置svg
config.module
.rule('svg')
.exclude.add(resolve('packages/x6/icons'))
.end()
config.module
.rule('icons')
.test(/\.svg$/)
.include.add(resolve('packages/x6/icons'))
.end()
.use('svg-sprite-loader')
.loader('svg-sprite-loader')
.options({
symbolId: 'icon-[name]'
})
.end()
},
configureWebpack: (config) => {
if (process.env.NODE_ENV === 'production') {
// 压缩处理
config.plugins.push(
new UglifyJsPlugin({
uglifyOptions: {
warnings: false,
},
sourceMap: false,
parallel: true, // 使用多进程并行运行来提高构建速度。默认并发运行数:os.cpus().length - 1。
})
);
}
}
};