Webpack Dev Server (webpack-dev-server) Hot Module Replacement (HMR) Not Working

前端 未结 6 2779
执笔经年
执笔经年 2021-02-19 22:48

I have gone through many answers on StackOverflow & on GitHub issues as well but, I am still stuck in Hot Module Replacement in Webpack. I am using npm start to

6条回答
  •  春和景丽
    2021-02-19 23:12

    devServer: {
     inline: true, // you missed this line which will reload the browser
     port : 7777
    }
    

提交回复
热议问题