Field 'browser' doesn't contain a valid alias configuration

后端 未结 16 2353
无人共我
无人共我 2020-12-01 11:54

I\'ve started using webpack2 (to be precise, v2.3.2) and after re-creating my config I keep running into an issue I can\'t seem to solve I get (sorry in advance

16条回答
  •  感情败类
    2020-12-01 12:07

    In my experience, this error was as a result of improper naming of aliases in Webpack. In that I had an alias named redux and webpack tried looking for the redux that comes with the redux package in my alias path.

    To fix this, I had to rename the alias to something different like Redux.

提交回复
热议问题