Skip to content

Commit 8150b73

Browse files
robwierzbowskiLinusBorg
authored andcommitted
Fix small errors in webpack.prod.conf (#897)
* Update vue-loader link (#886) * Remove unused count variable in webpack.prod.conf.js
1 parent 313ea41 commit 8150b73

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Introduction
22

3-
This boilerplate is targeted towards large, serious projects and assumes you are somewhat familiar with Webpack and `vue-loader`. Make sure to also read [`vue-loader`'s documentation](http://vuejs.github.io/vue-loader/index.html) for common workflow recipes.
3+
This boilerplate is targeted towards large, serious projects and assumes you are somewhat familiar with Webpack and `vue-loader`. Make sure to also read [`vue-loader`'s documentation](https://vue-loader.vuejs.org/) for common workflow recipes.
44

55
If you just want to try out `vue-loader` or whip out a quick prototype, use the [webpack-simple](https://github.com/vuejs-templates/webpack-simple) template instead.
66

template/build/webpack.prod.conf.js

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

0 commit comments

Comments
 (0)