diff --git a/src/js/lazy-load-module.js b/src/js/lazy-load-module.js index 7296234..efe642d 100644 --- a/src/js/lazy-load-module.js +++ b/src/js/lazy-load-module.js @@ -1,6 +1,7 @@ // I hate this with passion async function lazyLoad(url) { - const cache = window.lazy_load_cache || new Map() + const cache = window.lazyLoadCache || new Map() + window.lazyLoadCache = cache if (cache.get(url)) return cache.get(url) const module = loadModuleWithoutCache(url)