You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 8, 2019. It is now read-only.
This generator always installs the latest version of Webpack (which is now v4) and Webpack v4 removes support for the CommonsChunkPlugin, which should be replaced with config.optimization.splitChunks.
So if you create a new project with this generator right now, you'll get an error when bundling with Webpack.
Webpack 4.0 doesn't even have documentation available yet so might be easiest to wait until that happens before trying to do anything about this.
Temporary solution if you run into this is to update your web pack version in package.json to 3.11.0 and run yarn install again.
The text was updated successfully, but these errors were encountered:
This generator always installs the latest version of Webpack (which is now v4) and Webpack v4 removes support for the
CommonsChunkPlugin
, which should be replaced withconfig.optimization.splitChunks
.So if you create a new project with this generator right now, you'll get an error when bundling with Webpack.
Webpack 4.0 doesn't even have documentation available yet so might be easiest to wait until that happens before trying to do anything about this.
Temporary solution if you run into this is to update your web pack version in
package.json
to3.11.0
and runyarn install
again.The text was updated successfully, but these errors were encountered: