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
Right now, running ionic serve will use the Angular CLI's dev server, which uses webpack-dev-server. As far as I know, there isn't a way (via child processes) to know when the bundles are ready, aside from maybe parsing stdout of the process. This results in the Ionic CLI opening the browser window much sooner than expected and displaying a white screen until webpack-dev-server finally compiles everything and loads the app.
This message is displayed when the window is opened:
[ng] ℹ 「wdm」: wait until bundle finished: /
The Angular CLI used to have the same behavior if --open is specified, but it seems like it was fixed as of version 6.
The text was updated successfully, but these errors were encountered:
Right now, running
ionic serve
will use the Angular CLI's dev server, which uses webpack-dev-server. As far as I know, there isn't a way (via child processes) to know when the bundles are ready, aside from maybe parsing stdout of the process. This results in the Ionic CLI opening the browser window much sooner than expected and displaying a white screen until webpack-dev-server finally compiles everything and loads the app.This message is displayed when the window is opened:
The Angular CLI used to have the same behavior if
--open
is specified, but it seems like it was fixed as of version 6.The text was updated successfully, but these errors were encountered: