webpack-dev-server hot reload not working

前端 未结 11 1961
囚心锁ツ
囚心锁ツ 2020-12-24 06:51

My file structure is:

dist
  css
    style.css
  index.html
  js
    bundle.js
src
  css
    style.css
  index.html
  js
    main.js
node_modules
webpack.con         


        
11条回答
  •  梦毁少年i
    2020-12-24 07:39

    I increased the max number of file changes that can be watched and it worked for me. I guess the issue for me was too many files.

    echo fs.inotify.max_user_watches=1999999 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p
    

    source

提交回复
热议问题