Skip to content
2 changes: 1 addition & 1 deletion src/lib/serviceWorker/offline.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const CACHE = `cache-${version}`;

const ASSETS = [
...build, // the app itself
...files // everything in `static`
...files.filter(f => !f.endsWith('.gitkeep')) // everything in `static` except .gitkeep
];

export function makeOfflineAvailable() {
Expand Down