NORY-34: fix serwist configuration
This commit is contained in:
parent
5fb9170c81
commit
ea13802183
2 changed files with 30 additions and 18 deletions
|
@ -1,18 +1,24 @@
|
|||
import type { PrecacheEntry } from '@serwist/precaching';
|
||||
import { installSerwist } from '@serwist/sw';
|
||||
import { defaultCache } from '@serwist/next/worker';
|
||||
import type { PrecacheEntry, SerwistGlobalConfig } from 'serwist';
|
||||
import { Serwist } from 'serwist';
|
||||
|
||||
declare const self: ServiceWorkerGlobalScope & {
|
||||
// Change this attribute's name to your `injectionPoint`.
|
||||
// `injectionPoint` is an InjectManifest option.
|
||||
// See https://serwist.pages.dev/docs/build/inject-manifest/configuring
|
||||
__SW_MANIFEST: (PrecacheEntry | string)[] | undefined;
|
||||
};
|
||||
declare const self: ServiceWorkerGlobalScope;
|
||||
|
||||
installSerwist({
|
||||
declare global {
|
||||
interface WorkerGlobalScope extends SerwistGlobalConfig {
|
||||
// Change this attribute's name to your `injectionPoint`.
|
||||
// `injectionPoint` is an InjectManifest option.
|
||||
// See https://serwist.pages.dev/docs/build/configuring
|
||||
__SW_MANIFEST: (PrecacheEntry | string)[] | undefined;
|
||||
}
|
||||
}
|
||||
|
||||
const serwist = new Serwist({
|
||||
precacheEntries: self.__SW_MANIFEST,
|
||||
skipWaiting: true,
|
||||
clientsClaim: true,
|
||||
navigationPreload: true,
|
||||
runtimeCaching: defaultCache,
|
||||
});
|
||||
|
||||
serwist.addEventListeners();
|
||||
|
|
|
@ -1,18 +1,24 @@
|
|||
import type { PrecacheEntry } from '@serwist/precaching';
|
||||
import { installSerwist } from '@serwist/sw';
|
||||
import { defaultCache } from '@serwist/next/worker';
|
||||
import type { PrecacheEntry, SerwistGlobalConfig } from 'serwist';
|
||||
import { Serwist } from 'serwist';
|
||||
|
||||
declare const self: ServiceWorkerGlobalScope & {
|
||||
// Change this attribute's name to your `injectionPoint`.
|
||||
// `injectionPoint` is an InjectManifest option.
|
||||
// See https://serwist.pages.dev/docs/build/inject-manifest/configuring
|
||||
__SW_MANIFEST: (PrecacheEntry | string)[] | undefined;
|
||||
};
|
||||
declare const self: ServiceWorkerGlobalScope;
|
||||
|
||||
installSerwist({
|
||||
declare global {
|
||||
interface WorkerGlobalScope extends SerwistGlobalConfig {
|
||||
// Change this attribute's name to your `injectionPoint`.
|
||||
// `injectionPoint` is an InjectManifest option.
|
||||
// See https://serwist.pages.dev/docs/build/configuring
|
||||
__SW_MANIFEST: (PrecacheEntry | string)[] | undefined;
|
||||
}
|
||||
}
|
||||
|
||||
const serwist = new Serwist({
|
||||
precacheEntries: self.__SW_MANIFEST,
|
||||
skipWaiting: true,
|
||||
clientsClaim: true,
|
||||
navigationPreload: true,
|
||||
runtimeCaching: defaultCache,
|
||||
});
|
||||
|
||||
serwist.addEventListeners();
|
||||
|
|
Loading…
Add table
Reference in a new issue