Skip to main content

All Questions

0 votes
3 answers
3k views

styled-components - IE11 support - Invalid characters

I'm using styled-components in my React app. I'm using it this way: import React, { Component } from "react"; import styled from 'styled-components'; const CheckboxContainer = styled.div` ...
dns_nx's user avatar
  • 3,855
0 votes
2 answers
2k views

Target browser option in useBuiltIns/babel polyfill

I want to use 'useBuiltIns' option to load polyfills only for IE11 browser. [ '@babel/preset-env', { useBuiltIns: 'entry', debug: true, modules: false, corejs: '...
ar-coding's user avatar
  • 461
0 votes
0 answers
77 views

CSS not applied while adding returned CSS from a function to a styled-component for IE11?

I have written a function which returns CSS generated over iteration on an object and I want to use the returned CSS in a styled-component const getCss = (object, theme) => { let template = ``; ...
Sai Yerni Akhil's user avatar
0 votes
1 answer
196 views

Error loading React on specific builds of IE

Some users have encountered errors loading my app on IE that seem to be webpack/polyfill issues (Ex: SCRIPT1010 Expected identifier on a random line in chunk.js) I can't replicate the issue and it ...
AlessandraFrancez's user avatar
0 votes
1 answer
134 views

Reading file used XLSX.js with React got TypeMissMatchError on Internet Explorer 11

I got the dialog error TypeMissMatchError on Internet Exlorer 11 after choosing file to read. Below is my code to read file: onChangeFile = event => { event.stopPropagation(); event....
thelonglqd's user avatar
  • 1,872
0 votes
1 answer
461 views

Debounce 'object doesn't support this action' in IE11

This error is occurring within a React app: Function calls componentWillUpdateProps, which then calls another function that uses lodash's _.debounce( In other browsers, the code works fine, but in ...
GoldCasket's user avatar
1 vote
0 answers
813 views

Why React Lazy Load Import Retry doesnt work in IE?

I have situation I want to trigger the retry to assets like chunk.js after deployment, if failed, so that user doesnt see a blank screen. For which this what I did: export const retry = (fn, ...
Noob's user avatar
  • 55
0 votes
0 answers
143 views

using reactjs on ie11, blank page on production but if the inspector is open then the page load fine

I just create a web app using reactjs. works fine in almost all the browsers but i need to make it work in ie11. i add the polyfills as i see on other posts and works fine if a make a npm start (you ...
cms24es's user avatar
  • 15
1 vote
2 answers
389 views

Displaying Blank white pages regularly for my website only in IE11

I have created a website using react, babel, webpack and backend Django Framework. When running my site in other browsers like Chrome, Safari, Firefox, it works absolutely fine. But when it comes to ...
kumaresaan sekar's user avatar
1 vote
2 answers
1k views

IE11 is not responding due to a long running script error with Webpack + React + TypeScript

I am using webpack 4.* to bundle my react 16.* and typescript 3.* project! On our beloved internet explorer 11, I get: not responding long running script error and project never loads... both in ...
borna's user avatar
  • 283
1 vote
0 answers
523 views

Why IE11 render a blank page, as I run a Gatsby Project/ react Project?

package.json I have: "browserslist": [ ">2%", "not dead", "not op_mini all", "ie>=11" ], I am using Gatsby version: "gatsby": "^2.20.27" In the console I have this error:
Ahura's user avatar
  • 21
0 votes
1 answer
2k views

Does React Typescript works in Internet Explorer 11?

I have many React applications that works in Internet Explorer 11 (With polyfills). I would like to use TypeScript in my next applications, so I developed my first one using the same technologies and ...
Axel León's user avatar
0 votes
1 answer
501 views

React-app not working in Internet Explorer 11

I have a react app and I need it to work in Internet Explorer 11. I use Material-UI and some others tiny libraries. Right now, I just can see a blank page. I tried the next solutions (without success):...
Axel León's user avatar
0 votes
0 answers
242 views

Calling delete on 'slice' is not allowed in strict mode

I got this error only in IE-11 otherwise my React app is working fine in all browsers.This error (Calling delete on 'slice' is not allowed in strict mode.) is coming in the developer console and my ...
Dheeraj kumar Rao's user avatar
3 votes
0 answers
2k views

React Axios Error in IE 11, but Not Chrome

The following works in Chrome, but gives Network Error in IE 11. Same with using Fetch instead of Axios. What am I missing? async componentDidMount() { var auth = "Basic " + btoa(process.env....
Nick's user avatar
  • 186

15 30 50 per page
1 2 3
4
5
12