-
Notifications
You must be signed in to change notification settings - Fork 519
[Question] RangeError: Maximum call stack size exceeded [HMR] #236
Comments
It could be somehow related to: webpack/webpack-dev-server#87 Are you using the base settings or did you change a few things in webpack config or your package.json scripts for webpack? Haven't seen this error with the base repo at least yet. |
hello Mark we have changed several things in the package and webpack files |
The problem is that you've doubled down on Hot, from the link:
Check to see if you added --hot and the plugin in your webpack config |
hi mark, we tried to remove from webpack.config the hotmodule replacement plugin
but we obtain the following message from the browser when we try to do an "hot" update to something
and obviously we do not intentionally call "--hot" bat we dont'know if the --hot flag is called elsewhere |
@lucadibiagio Take a look at boot-client.ts
That should fix HMR requiring full reload on each file change. |
hello Zucka, now i do not have anymore the message of full reload but i still have the error of |
So removing Hmm, what about app configuration. The only thing i have configured for HMR is in the
|
Thanks for providing the detailed info, and to others for trying to help. I can't suggest anything else without being able to repro the issue, so @lucadibiagio - if you are able to create a minimal repro project, that would certainly help us get to the bottom of it! |
I'd be happy to try to diagnose and fix this if we had repro info, but since we don't there's not much I can do to proceed :( I'll close this, but if anyone can give repro details, please post a new issue. |
hi all,
we are building an SPA using Angular2 (rc4) AspNet Core and WebPack.
The text was updated successfully, but these errors were encountered: