-
-
Notifications
You must be signed in to change notification settings - Fork 8
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
App entry point #9
Comments
Interesting. Any thoughts on how to correct this? |
Unfortunately no. I have not debugged where Then for the |
This is where |
@jods4 maybe can be closed? |
@Alexander-Taran was there a fix for that? |
@jods4, sir. Can't know sir. |
Nothing that I know of. |
My application root is by convention
app
. It starts like this:aurelia.start().then(() => aurelia.setRoot());
I noticed that
app
is not loaded through any of themodule.hot.accept
paths inaurelia-loader-webpack
and hence does not support HMR. Changing code inapp.ts
triggers a full reload.app.html
on the other hand goes throughmodule.hot.accept
and triggers a hot reload, but the view is only updated the very first time. After that, it still triggers a hot reload but the view is not updated anymore.I don't have that problem with other views, they refresh fine.
The text was updated successfully, but these errors were encountered: