Skip to content

Commit 4535505

Browse files
committed
feat: extradll
1 parent 8c9ed2d commit 4535505

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed

src/built-in-plugins/command-dev/plugin/webpack-dll-config.ts

+3-7
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,9 @@ export default (opts: IOptions) => {
3535
mode: 'development',
3636

3737
entry: {
38-
library: plugin.devDllPipes.reduce(
39-
(all, fn) => {
40-
return fn(all);
41-
},
42-
// ['react', 'react-dom', 'lodash', 'highlight.js', 'react-router', 'history', `${PRI_PACKAGE_NAME}/client`],
43-
vendors,
44-
),
38+
library: plugin.devDllPipes.reduce((all, fn) => {
39+
return fn(all);
40+
}, vendors),
4541
},
4642

4743
output: {

0 commit comments

Comments
 (0)