Why IE 11 display blank page rendering react app

React is not compatible right away with IE, From the official documentation : React supports all popular browsers, including Internet Explorer 9 and above, although some polyfills are required for older browsers such as IE 9 and IE 10. We don’t support older browsers that don’t support ES5 methods, but you may find that your … Read more

IE11 – does a polyfill / script exist for CSS variables?

Yes, so long as you’re processing root-level custom properties (IE9+). GitHub: https://github.com/jhildenbiddle/css-vars-ponyfill NPM: https://www.npmjs.com/package/css-vars-ponyfill Demo: https://codepen.io/jhildenbiddle/pen/ZxYJrR From the README: Features Client-side transformation of CSS custom properties to static values Live updates of runtime values in both modern and legacy browsers Transforms <link>, <style>, and @import CSS Transforms relative url() paths to absolute URLs Supports chained … Read more

How do I support Internet Explorer in an Angular 8 application?

According to this issue reply You need to follow the following steps Create a new tsconfig tsconfig.es5.json next to tsconfig.json with the below contents { “extends”: “./tsconfig.json”, “compilerOptions”: { “target”: “es5” } } In angular.json Under projects:yourAppName:architect:build:configurations, add “es5”: { “tsConfig”: “./tsconfig.es5.json” } and projects:yourAppName:architect:serve:configurations add “es5”: { “browserTarget”: “yourAppName:build:es5” } Remember to change yourAppName … Read more