UNPKG
builder-we-app-canary
Version:
latest (0.0.1)
0.0.1
The KOS Builder Module for Choice MicroApp, use latest dependencies
builder-we-app-canary
/
webpack
/
config
/
progress.js
12 lines
(7 loc)
•
235 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
'use strict'
;
const
ProgressBarPlugin
=
require
(
'progress-bar-webpack-plugin'
);
module
.
exports
=
function
(
config
) { config.
plugins
= config.
plugins
|| [];
// 显示编译进度
config.
plugins
.
push
(
new
ProgressBarPlugin
()); }