我最近将我们的 React 应用程序升级到了 webpack5,一切正常,但浏览器错误显示Uncaught ReferenceError: module is not defined
在这段代码中:
if (module.hot) {
module.hot.accept('./Layout/Layout', () => {
render();
});
}
谁能解释一下发生了什么以及我能做些什么来解决这个问题?
我最近将我们的 React 应用程序升级到了 webpack5,一切正常,但浏览器错误显示Uncaught ReferenceError: module is not defined
在这段代码中:
if (module.hot) {
module.hot.accept('./Layout/Layout', () => {
render();
});
}
谁能解释一下发生了什么以及我能做些什么来解决这个问题?
在 webpack5 中,所有 nodejs 变量都像process
或module
被删除,因此要进入module.hot
webpack 5,您需要使用import.meta.webpackHot
并将代码更改为:
if (import.meta.webpackHot) {
import.meta.webpackHot.accept('./Layout/Layout', () => {
render();
});
}