mirror of
https://github.com/discordeno/discordeno.git
synced 2026-06-02 17:00:08 +00:00
7 lines
149 B
JavaScript
7 lines
149 B
JavaScript
workbox.routing.registerRoute(
|
|
new RegExp('https:.*min.(css|js)'),
|
|
workbox.strategies.staleWhileRevalidate({
|
|
cacheName: 'cdn-cache',
|
|
})
|
|
);
|