I recently upgraded our react app to webpack5 and everything works fine but the browser error saying Uncaught ReferenceError: module is not defined on this code:
if (module.hot) {
module.hot.accept('./Layout/Layout', () => {
render();
});
}
can anyone explain what happened and what I could do to fix this?