Back to Next Js

Service Worker Example

examples/with-service-worker/README.md

16.2.51.4 KB
Original Source

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:

bash
npx create-next-app --example with-service-worker with-service-worker-app
bash
yarn create next-app --example with-service-worker with-service-worker-app
bash
pnpm create next-app --example with-service-worker with-service-worker-app

Deploy it to the cloud with Vercel (Documentation).