How does Browser load an Angular app
Step 1: Browser Loads index.html
The browser requests index.html, which contains a script tag that loads the Angular bundle.
Example:
<script src="main.js"></script> <!-- Compiled Angular app -->
Step 2: main.ts Bootstraps the Application
A...
how-does-angular-app-loads-in-a-browser.hashnode.dev2 min read