I suppose the Angular application works as follows 1) browser sends a request 2) The server sends response and Angular's JS bundle (main.js).
Assuming that I have understood the working mechanism correctly, is there a way I can get the cookies which are in the http response which delivered the Angular JS bundle?
My server on receiving the request, inserts two cookies and then send a response to the client. The response also includes my Angular application. Is there a way I can get access to the Cookies in my app.component.ts?