Browser incompatibility Svelte

Viewed 61

I have an application in Svelte that only works on versions above 84 of chrome, but I need it to work on older versions as well. Is there any way to solve this problem?

1 Answers

This depends on your build system and what the source of the problem is.

E.g. Vite has built-in support for transpiling to specific JS versions. However, if an API is missing, you have to add polyfills (e.g. via core-js).

Related