Concept Flow - How Angular bootstraps an application
Browser loads index.html
Angular runtime loads main.ts
Call bootstrapApplication()
Create root component instance
Render root component template
Attach component to DOM
App is ready and interactive
Angular starts by loading the main file, then calls bootstrapApplication to create and render the root component, attaching it to the page.