Skip to content

Commit

Permalink
Remove debug caching from service worker
Browse files Browse the repository at this point in the history
  • Loading branch information
aryanpingle committed Sep 28, 2024
1 parent 9fcd518 commit a0d1ad2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/service-worker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const log = (text: string, color = "rgb(128, 128, 128)") =>
`color: black !important; background-color: ${color};`,
);

const ENABLE_CACHING = IS_DEVELOPMENT;
const ENABLE_CACHING = !IS_DEVELOPMENT;

const CACHE_NAME = "runic-cache-1";
let CACHE: Cache = null;
Expand Down

0 comments on commit a0d1ad2

Please sign in to comment.