You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The project currently includes or references a cache.appcache file, which is deprecated and no longer supported in most modern browsers, including Chrome. The Application Cache (AppCache) feature has been removed due to serious limitations and security issues.
According to Chrome Developer Lighthouse Best Practices, continuing to use AppCache may negatively impact site performance and compatibility. Lighthouse flags its presence as a best practice violation.
We have already migrated to using a modern Service Worker for offline functionality, as seen in sw.js. Therefore, the legacy AppCache file is no longer needed and should be removed to avoid confusion and ensure best practices.
Recommended Action:
Remove all references to cache.appcache from the HTML or server configuration.
Delete the cache.appcache file from the codebase.
The text was updated successfully, but these errors were encountered:
Uh oh!
There was an error while loading. Please reload this page.
Description:
The project currently includes or references a
cache.appcache
file, which is deprecated and no longer supported in most modern browsers, including Chrome. The Application Cache (AppCache) feature has been removed due to serious limitations and security issues.According to Chrome Developer Lighthouse Best Practices, continuing to use
AppCache
may negatively impact site performance and compatibility. Lighthouse flags its presence as a best practice violation.We have already migrated to using a modern Service Worker for offline functionality, as seen in sw.js. Therefore, the legacy AppCache file is no longer needed and should be removed to avoid confusion and ensure best practices.
Recommended Action:
cache.appcache
from the HTML or server configuration.cache.appcache
file from the codebase.The text was updated successfully, but these errors were encountered: