I’ve faced with the following behavior :
I have .net 8 web api application, that returns an angular spa application;
The .net hosted on IIS, by default dynamic compression on IIS is disabled and in that state I can see, that my web api application successfully return all angular app resources like js bundles, styles etc, after browser completed uploading that resources the spa app just stucking at the initial state, no api request or component loading happen ;
but if I enable dynamic compression on IIS everything start work as expected , why dynamic compression setting could cause such behavior ?
I don’t have any specific settings around compression from .net web api application side
Could you please help, how to troubleshoot it
2