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?
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?
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).