1、先搭建一个webpack+react的项目。 2、webpack.config.js中配置 module.exports = { //... devServer: { hot: true } }; module.exports = { //... plugins: [ //.. new webpack.HotModuleReplacementPlugin() ], }; 3、index.tsx中配置,我用的是typesctipt,不然的话就是index.js,也就是项目入口的js文件 let _module