I'm getting this error:
ReferenceError: Image is not defined
The code is in a component and looks like this:
// Preload images for (const name in images) { (new Image()).src = images[name] }
The only thing I did is a exact copy of this working REPL in local, there it works but in local it doesn't. These lines are under the piece.svelte component.
I'm very new at js, I imagine I'm missing some basics. Any Idea?