mirror of https://github.com/go-gitea/gitea.git
17 lines
355 B
JavaScript
17 lines
355 B
JavaScript
|
import {registerRoute} from 'workbox-routing';
|
||
|
import {StaleWhileRevalidate} from 'workbox-strategies';
|
||
|
|
||
|
const cacheName = 'static-cache-v2';
|
||
|
|
||
|
const cachedDestinations = new Set([
|
||
|
'manifest',
|
||
|
'script',
|
||
|
'style',
|
||
|
'worker',
|
||
|
]);
|
||
|
|
||
|
registerRoute(
|
||
|
({request}) => cachedDestinations.has(request.destination),
|
||
|
new StaleWhileRevalidate({cacheName}),
|
||
|
);
|