Angular httpClient request with SSR
I have a dilemma with angular 18 (I suppose it is the same with 17)
I need to hide http requests from the browser for security reasons (an easy thing to do with next)
Angular with ssr hides the gets from me by default and in “provideClientHydration” I add that it takes into account the post requests and those that have some authentication header, provideClientHydration(withHttpTransferCacheOptions({ includePostRequests: true, includeRequestsWithAuthHeaders: true }))