문제

I'm working on a dozen enterprise SPA's and PWA's and most of them require impeccable IE11 support. This has been a complete pain with countless problems every step of the way.

It occured to me recently that I could just focus on implementing SSR (server-side-rendering) instead and completely bypassing the need to support IE.

I however don't have a lot of experience with SSR and wanted to ask about how this could come back to haunt me or if any more experienced developers have had to make this choice/how it worked out for you?

도움이 되었습니까?

해결책

Based on further research and consulting I decided to just put the effort in and properly support IE.

It really wasn't that hard either after a bit of tweaking. Angular took care of most JavaScript problems and I only had to focus on CSS issues.

By far the biggest issue was CSS and things just not aligning/responding properly. Flexbox is not well supporrted on IE11 it seems.

Ended up just putting everything in a div and putting more effort in on the parrenting of html elements but still using FxLayout directives.

Product is shipped and is used by hundreds of IE clients daily with no issues.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 softwareengineering.stackexchange
scroll top