Skip to content

Commit 86d4970

Browse files
PanJiaChenLinusBorg
authored andcommitted
Remove extra commas (#1050)
1 parent 657c982 commit 86d4970

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

template/build/webpack.prod.conf.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ const webpackConfig = merge(baseWebpackConfig, {
9797
// prevent vendor hash from being updated whenever app bundle is updated
9898
new webpack.optimize.CommonsChunkPlugin({
9999
name: 'manifest',
100-
minChunks: Infinity,
100+
minChunks: Infinity
101101
}),
102102
// This instance extracts shared chunks from code splitted chunks and bundles them
103103
// in a separate chunk, similar to the vendor chunk
@@ -106,7 +106,7 @@ const webpackConfig = merge(baseWebpackConfig, {
106106
name: 'app',
107107
async: 'vendor-async',
108108
children: true,
109-
minChunks: 3,
109+
minChunks: 3
110110
}),
111111

112112
// copy custom static assets

0 commit comments

Comments
 (0)