Hi! Does kotlin-js support for example IE 11 ? I h...
# javascript
a
Hi! Does kotlin-js support for example IE 11 ? I have error with Promise ('Promise' is undefined) in it. + I'am using coroutines.
r
a
Robert thanks! I added next rows to
index.html
.
Copy code
<body>
<div id="root"></div>

<script src="<https://polyfill.io/v3/polyfill.min.js?features=Promise>"></script>
<script src="<https://polyfill.io/v3/polyfill.min.js?features=Object.assign>"></script>

<script src="app.js"></script>

</body>
But I'm not sure that right method. Is it okay?
r
I think this would be better:
<script crossorigin="anonymous" src="<https://polyfill.io/v3/polyfill.min.js?features=Promise%2CObject.assign>"></script>
👍 1