1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Move serviceworker precaching to production config

This commit is contained in:
Bill Thornton 2021-06-03 10:14:28 -04:00
parent 066690dd8b
commit 74940b601b
3 changed files with 16 additions and 9 deletions

View file

@ -44,6 +44,10 @@ self.addEventListener('notificationclick', function (event) {
event.waitUntil(executeAction(action, data, serverId));
}, false);
// this is needed by the webpack Workbox plugin
/* eslint-disable-next-line no-restricted-globals,no-undef */
precacheAndRoute(self.__WB_MANIFEST);
// Do not precache files in development so live reload works as expected
/* eslint-disable-next-line no-undef -- NODE_ENV is replaced by webpack */
if (process.env.NODE_ENV === 'production') {
// this is needed by the webpack Workbox plugin
/* eslint-disable-next-line no-restricted-globals,no-undef */
precacheAndRoute(self.__WB_MANIFEST);
}