TheLarkInn / webpack-workshop-2018

Learning resources for the webpack academy workshop series for 2018
MIT License
554 stars 995 forks source link

webpackMerge function is deprecated in webpack-merge 5.x.x. #43

Open RaminMammadzada opened 3 years ago

RaminMammadzada commented 3 years ago

webpack-merge updated it's api in version 5.x.x. If following along in the course, the npm install would download version 5.x.x, where instead of using default require of webpackMerge it has to be updated to name import merge.

I have updated the webpack config file.

So, instead of const webpackMerge = require("webpack-merge"); we should write { merge } = require("webpack-merge");

To keep it similar to how Sean does it in the video, use version 4.x.x