I created an Angular app which has 1 Home Component & 6 other Component. All 6 Component contains only html text(Articles on some topic) not any js/ts code. in home component, I use router-outlet to switch between 6 components. Then I build and deploy.
I want to know that how actually Angular request-response cycle works. When I switch between 6 components of article it call request every time to front-end server OR at first time, it loads all data of website and javascript files only change the article texts.