You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Which @angular/* package(s) are the source of the bug?
Don't known / other
Is this a regression?
Yes
Description
constructor(){constrequest=inject(REQUEST,{optional: true});console.log(request)if(request){constcookie=request.headers.get('cookie');console.log(cookie)console.log('Server received a request',request.url);}constreqContext=inject(REQUEST_CONTEXT,{optional: true})as{server: string;};if(reqContext){// The context is defined in the server*.ts filethis.server=reqContext.server;// Store this as this won't be available on hydrationthis.transferState.set(this.serverKey,this.server);}this.server=this.transferState.get(this.serverKey,'');}
Please provide a link to a minimal reproduction of the bug