rsnext/examples/with-service-worker
2021-01-26 18:59:01 +00:00
..
pages Example for adding a service worker into a next.js application (#17855) 2020-11-12 01:09:25 +00:00
public Example for adding a service worker into a next.js application (#17855) 2020-11-12 01:09:25 +00:00
.gitignore Example for adding a service worker into a next.js application (#17855) 2020-11-12 01:09:25 +00:00
package.json Example for adding a service worker into a next.js application (#17855) 2020-11-12 01:09:25 +00:00
README.md Update links that go to vercel.com/now (#21556) 2021-01-26 18:59:01 +00: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/_app.js 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

Deploy the example using Vercel:

Deploy with Vercel

How to use

Execute create-next-app with npm or Yarn to bootstrap the example:

npx create-next-app --example with-service-worker with-service-worker-app
# or
yarn create next-app --example with-service-worker with-service-worker-app

Deploy it to the cloud with Vercel (Documentation).