https://kotlinlang.org logo
#compose-web
Title
# compose-web
a

andylamax

02/19/2023, 7:56 AM
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

Arjan van Wieringen

02/19/2023, 8:08 AM
You can make a webpack.config.js file if I am not mistaken. So you can modify the configuration
a

andylamax

02/19/2023, 9:31 AM
and whats the config script to disable autoreload?
a

andylamax

02/19/2023, 12:50 PM
Thanks for the links. The led me to this snippet
Copy code
config.devServer.hot = false
config.devServer.liveReload = false
393 Views