You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 8, 2020. It is now read-only.
please, I suggest a small update in the documentation on how to add hot module reload in a existing project.
To make it work with the ts loader like in your sample I found that I have to add this <TypeScriptCompileBlocked>true</TypeScriptCompileBlocked>
to the project file.
If you don't do this, ts compiles to a js file, and webpack look at first the js compiled file, see that is not changed and doesn't trigger the reload.
you have 2 solutions:
add that to the project.
and compileOnSave to the tsconfig, this way that js file is updated and webpack reload the changed files.