mirror of
https://github.com/vercel/next.js.git
synced 2026-09-20 02:25:18 +08:00
Service Worker Example
This example shows how to add a simple service worker to a Next.js application. The service worker is in public/sw.js and it's installed by pages/index.tsx after the first render.
The example is based on the following blog post: Adding a service worker into your Next.js application.
Deploy your own
How to use
Execute create-next-app with npm, Yarn, or pnpm to bootstrap the example:
npx create-next-app --example with-service-worker with-service-worker-app
yarn create next-app --example with-service-worker with-service-worker-app
pnpm create next-app --example with-service-worker with-service-worker-app
Deploy it to the cloud with Vercel (Documentation).