rsnext/examples/with-service-worker
Oscar Busk 077097b7f8
Remove licence from all example/package.json that has them (#28007)
* Add licences to all example/package.json that lack them

* Revert "Add licences to all example/package.json that lack them"

This reverts commit 5d4e25012f7334772b8ef5924bc355277e827cba.

* Update check-examples to remove `license` field from examples

* Remove `license` from all examples.

This was mentioned in vercel/next.js#27121 but it looks like it didn't end up being in the merge?

Co-authored-by: JJ Kasper <jj@jjsweb.site>
2021-08-14 10:48:39 -05: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 Remove licence from all example/package.json that has them (#28007) 2021-08-14 10:48:39 -05: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).