Skip to content

Commit

Permalink
fix(language-web): disable webmanifest caching
Browse files Browse the repository at this point in the history
  • Loading branch information
kris7t committed Dec 25, 2024
1 parent f761a91 commit 4afce2f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public class CacheControlFilter implements Filter {

private static final Set<String> CACHE_URI_DENYLIST = Set.of("apple-touch-icon.png", "config.json", "favicon.png",
"favicon.svg", "favicon-96x96.png", "health", "icon-any.svg", "icon-192x192.png", "icon-512x512.png",
"mask-icon.svg", "sw.js");
"manifest.webmanifest", "mask-icon.svg", "sw.js");

private static final Duration EXPIRY = Duration.ofDays(365);

Expand Down

0 comments on commit 4afce2f

Please sign in to comment.