Module not found: Error: Cannot resolve module 'react/lib/ReactMount' in ...

这是一个出现在react-hot-loader上的bug,ReactMount已经被移到了react-dom下面,不出现在[email protected]版本,或许[email protected]也有这个问题,而报错的地方是react-hot-loader引用了“react/lib/ReactMount”。该插件已经在[email protected]版本移除。

在原作者没有更新bug修复方案的情况下,如果要使用react-hot-loader,请使用[email protected]或者以下版本。

如果你还需要继续使用react高版本,可以在webpack配置alias解决这个问题

alias: {
    'react/lib/ReactMount': 'react-dom/lib/ReactMount'
}

ps:
我的前端世界:https://hyy1115.github.io/huangyongyue/

你可能感兴趣的:(react,JavaScript,webpack)