I'm debugging a website on my machine with Windows and Windows Subsystem for Linux.
I use cross-storage in my website. I can launch the website https://localhost:3000/sign under Chrome, whereas in IE it raises an error CrossStorageClient could not connect, which blocks the page.
No error in Chrome:

CrossStorageClient could not connect in IE

In the client side, it seems that it is new CrossStorageClient(...) that raises the error.
const storage = new CrossStorageClient(`https://localhost:3000/htmls/hub.html`, {});
export async function getSignToken() {
await storage.onConnect();
If I open https://localhost:3000/htmls/hub.html in IE in a tab, it shows a problem of security certificate, I could click on Go on to the webpage (not recommended) to continue. (The CrossStorageClient could not connect error of the client side is still raised regardless of this).

Here is hub.html on the server side:
<!doctype html>
<head>
<title>Production Cross Storage Hub</title>
</head>
<body>
<script type="text/javascript" src="/javascripts/hub.js"></script>
<script>
CrossStorageHub.init([
{origin: /:\/\/localhost(:[0-9]*)?$/, allow: ['get', 'set', 'del']},
{origin: /\.10studio.tech$/, allow: ['get', 'set', 'del']},
{origin: /:\/\/(www\.)?10studio.tech$/, allow: ['get', 'set', 'del']}
]);
</script>
</body>
</html>
So, does anyone know how to fix this CrossStorageClient could not connect error?
I'm debugging a website on my machine with Windows and Windows Subsystem for Linux.
I use cross-storage in my website. I can launch the website
https://localhost:3000/signunder Chrome, whereas in IE it raises an errorCrossStorageClient could not connect, which blocks the page.No error in Chrome:

CrossStorageClient could not connectin IEIn the client side, it seems that it is
new CrossStorageClient(...)that raises the error.If I open

https://localhost:3000/htmls/hub.htmlin IE in a tab, it shows a problem ofsecurity certificate, I could click onGo on to the webpage (not recommended)to continue. (TheCrossStorageClient could not connecterror of the client side is still raised regardless of this).Here is
hub.htmlon the server side:So, does anyone know how to fix this
CrossStorageClient could not connecterror?