Created
June 4, 2018 17:38
-
-
Save Krasnov8953/6ebd516664ced83e8e74c246028570a7 to your computer and use it in GitHub Desktop.
HMR React
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if (module.hot && process.env.NODE_ENV !== 'production') { | |
console.log('HMR enabled') | |
module.hot.accept('./components/App', () => { | |
const NextApp = App.default | |
ReactDOM.render( | |
<NextApp />, | |
document.getElementById('root') | |
) | |
}); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment