mirror of https://github.com/go-gitea/gitea.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
355 B
JavaScript
17 lines
355 B
JavaScript
5 years ago
|
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}),
|
||
|
);
|