UNPKG

@serwist/next

Version:

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

18 lines (14 loc) 382 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; }