I’m using the new auth0-spa-sdk in a React project, using CRA, following the getting started guide. But I can’t get it working in IE11.
To get it working in Edge I had to add a polyfill for TextEncoder.
However for IE11 there is an error in the file auth0-spa-js.production.js when calling crypto.getRandomValues(new Uint8Array(43)); AND window.crypto.subtle.digest({ name: 'SHA-256' }, new TextEncoder().encode(s));
As far as i know crypto isn’t available in IE11 but msCrypto is.