Skip to content

Commit 6bf6189

Browse files
robwierzbowskifrandiox
authored andcommitted
Fix small errors in webpack.prod.conf (vuejs-templates#897)
* Update vue-loader link (vuejs-templates#886) * Remove unused count variable in webpack.prod.conf.js
1 parent 1722a98 commit 6bf6189

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

template/build/webpack.prod.conf.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ const webpackConfig = merge(baseWebpackConfig, {
7575
// split vendor js into its own file
7676
new webpack.optimize.CommonsChunkPlugin({
7777
name: 'vendor',
78-
minChunks: function (module, count) {
78+
minChunks: function (module) {
7979
// any required modules inside node_modules are extracted to vendor
8080
return (
8181
module.resource &&

0 commit comments

Comments
 (0)