Think about where you write your Angular components and services.
The 'src/app' folder is where the main application code lives. This includes components, services, and modules that make up the Angular app.
Consider what 'main.ts' does in Angular.
'main.ts' is the entry point that bootstraps the root module. Without it, Angular cannot start the app.
Look for the file that declares NgModule and imports BrowserModule.
The root module is defined in 'app.module.ts' inside the 'src/app' folder.
Check where global styles are registered in Angular configuration.
Global styles must be listed in the 'styles' array inside 'angular.json' to be included in the build.
Think about what the browser loads first and how Angular bootstraps modules and components.
The browser first loads 'index.html' (4), then Angular runs 'main.ts' (1) to bootstrap the root module 'app.module.ts' (2), which loads the root component 'app.component.ts' (3).