I just upgraded my Angular application to version 5, which worked fine. However, once I upgraded a few other things (like @angular/cdk, @angular/material, typescript) I had to fix a bunch of bugs that came with the upgrade. Everything seems totally great when I run ng serve
or ng build --prod
(JIT and AOT builds) --there aren't any errors in the terminal and the application builds successfully. The application is then served on localhost:4200
as expected, but the app doesn't seem to bootstrap and nothing at all is printed in the browser console.
What can I do to troubleshoot the problem? I don't have any errors to look into, I feel like I just have to guess what's wrong.
Any suggestions?