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
Hi there! According to thisOccurrenceOrderPlugin is now enabled by default, and there's no need to include it as a plugin anymore;
So, you can just change this line plugins: [new CleanWebpackPlugin(), new webpack.optimize.OccurrenceOrderPlugin()]
to this plugins: [new CleanWebpackPlugin()]
in webpack.production.js, and the error goes away.
BTW, thanks for this setup. I'm fairly new to node, and this repo answered a lot of questions for me :)
The text was updated successfully, but these errors were encountered:
Hi there!
According to this
OccurrenceOrderPlugin
is now enabled by default, and there's no need to include it as a plugin anymore;So, you can just change this line
plugins: [new CleanWebpackPlugin(), new webpack.optimize.OccurrenceOrderPlugin()]
to this
plugins: [new CleanWebpackPlugin()]
in
webpack.production.js
, and the error goes away.BTW, thanks for this setup. I'm fairly new to node, and this repo answered a lot of questions for me :)
The text was updated successfully, but these errors were encountered: