-
Notifications
You must be signed in to change notification settings - Fork 1.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Turn off live code reloading #1829
Comments
I think the option to do this while running the dev server was removed: #724 But, it looks like you could just use this instead of spinning up the dev server: # watcher
./bin/webpack --watch --colors --progress
# standalone build
./bin/webpack |
But isn't it the server the only option that will stop on-demand compilation? I recall that with the command above on-demand compilation still occurred. Will try again to confirm or deny. |
Did you try Line 225 in aefdf30
|
Thanks @jakeNiemiec As suggested, please use watcher if you don't want dev server:
|
Thanks! The |
From the README
What if I want this option for the second reason stated above (I have enough JavaScript that on-demand compilation is too slow) but I do not want live code reloading? Is there a way to turn it off? I tried to find about it in the documentation but did not find it.
The text was updated successfully, but these errors were encountered: