Skip to content
This repository was archived by the owner on Jul 8, 2023. It is now read-only.

Commit 7c4ef24

Browse files
committed
perf: добавил webpack.optimize.ModuleConcatenationPlugin
1 parent 7af3779 commit 7c4ef24

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

webpack.base.config.js

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
const webpack = require('webpack');
2+
13
/**
24
* Base config
35
*/
@@ -25,5 +27,7 @@ module.exports = {
2527
},
2628
],
2729
},
28-
plugins: [],
30+
plugins: [
31+
new webpack.optimize.ModuleConcatenationPlugin(),
32+
],
2933
};

0 commit comments

Comments
 (0)