UNPKG

create-next-app-pwa

Version:

The script for the npx create-next-app-pwa command. Making it easier for everyone to create a Next.js Progressive Web App.

12 lines (8 loc) 242 B
import withSerwistInit from "@serwist/next"; /** @type {import('next').NextConfig} */ const nextConfig = {}; const withSerwist = withSerwistInit({ swSrc: "sw.ts", swDest: "public/sw.js", }); export default withSerwist(nextConfig);