Skip to content
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

fix: check authorities in app adapter [LIBS-370] #757

Open
wants to merge 15 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Merge branch 'master' into fix/pwa-handle-navigations
  • Loading branch information
KaiVandivier committed Feb 23, 2023
commit d5ed3048be7a25fc8b935d640d8fe23dc682209e
3 changes: 1 addition & 2 deletions pwa/src/service-worker/service-worker.js
Original file line number Diff line number Diff line change
Expand Up @@ -150,8 +150,7 @@ export function setUpServiceWorker() {
({ url }) =>
PRODUCTION_ENV &&
urlMeetsAppShellCachingCriteria(url) &&
fileExtensionRegexp.test(url.pathname) &&
!/\.(json|action)/.test(url.pathname), // don't SWR these
/\.(jpg|gif|png|bmp|tiff|ico|woff)$/.test(url.pathname),
new StaleWhileRevalidate({ cacheName: 'other-assets' })
)

Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.