UNPKG

@serwist/next

Version:

A module that integrates Serwist into your Next.js application.

15 lines 439 B
import type { Asset, Compilation } from "webpack"; export type SerwistNextOptionsKey = "self.__SERWIST_SW_ENTRY"; export interface SerwistNextOptions { sw: string; scope: string; cacheOnNavigation: boolean; register: boolean; reloadOnOnline: boolean; swEntryWorker: string | undefined; } export interface ExcludeParams { asset: Asset; compilation: Compilation; } //# sourceMappingURL=internal-types.d.ts.map