-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove resource caching from service worker #4885
Conversation
3a72bba to
4c8903d
Compare
|
I've been wondering if there was really any point in this for awhile now... 😅 |
|
@nielsvanvelzen I noticed the serviceworker file wasn't being included in the build after these changes, I pushed up a change that should fix that if you want to confirm... |
This comment has been minimized.
This comment has been minimized.
b86a957 to
c55d7b6
Compare
|
Kudos, SonarCloud Quality Gate passed!
|
|
Rebased to fix merge conflicts in package-lock file |
Cloudflare Pages deployment
|









I've ran into annoying cache issues from the worker occasionally and after thinking about it I came to the conclusion that it does not make any sense to cache the complete SPA.
Jellyfin web does not have offline functionality and the resources are served by the server. If the web client is used offline that means you can't connect to the server, so there is no point in caching it 🤷.
Changes
clientsClaimfunction from workbox (it really is just a one liner)Issues
Fixes #4549, fixes #4651