Remove the Academy films
Test and deploy / test-and-deploy (push) Successful in 1m3s

The generated videos weren't good enough — pull the films card, its
styles, and the video assets. The service-worker hardening stays: media
paths bypass the cache (Range/206 responses) and only full 200 responses
are cached.

Co-Authored-By: Claude Fable 5 <[email protected]>
This commit is contained in:
2026-08-11 19:02:03 -04:00
co-authored by Claude Fable 5
parent cc735aba82
commit e9f2393c96
8 changed files with 0 additions and 69 deletions
-1
View File
@@ -67,7 +67,6 @@ self.addEventListener("fetch", (event) => {
url.pathname.startsWith("/api/") ||
// Media streams use Range requests (206 responses the Cache API rejects) and are far
// too large to belong in the static cache — let the browser handle them natively.
url.pathname.startsWith("/academy-video/") ||
url.pathname.startsWith("/academy-audio/")
)
return;