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.
14 lines (11 loc) • 297 B
text/typescript
import type { NextConfig } from "next";
import withSerwistInit from "@serwist/next";
const nextConfig: NextConfig = {
/* config options here */
};
/** DO NOT TOUCH */
const withSerwist = withSerwistInit({
swSrc: "sw.ts",
swDest: "public/sw.js",
});
export default withSerwist(nextConfig);