Is there a way to disable webpack's auto reloading...
# compose-web
a
Is there a way to disable webpack's auto reloading?? It really doesn't help while doing compose 4 Web at all. I am trying to see if disabling it might give me more iteration speed
👀 1
a
You can make a webpack.config.js file if I am not mistaken. So you can modify the configuration
a
and whats the config script to disable autoreload?
a
Thanks for the links. The led me to this snippet
Copy code
config.devServer.hot = false
config.devServer.liveReload = false
1035 Views