creadas dos versiones. la primera exporta solo a wav, la segunda, exporta igual al formato de entrada

This commit is contained in:
2026-01-07 12:31:38 -05:00
parent b3e15bcb2d
commit 5d5711ff09
5 changed files with 346 additions and 0 deletions

6
sw.js Normal file
View File

@@ -0,0 +1,6 @@
self.addEventListener('install', (e) => {
e.waitUntil(caches.open('v1').then(cache => cache.addAll(['index.html'])));
});
self.addEventListener('fetch', (e) => {
e.respondWith(caches.match(e.request).then(res => res || fetch(e.request)));
});