export async function getJson(name) {
  const cache = await caches.open('media')

  const data = await cache.match(name)
  if (data) {