The document is only used for theme display, please go to the official site for the latest Vuepress documentation

pwa

@vuepress/plugin-pwa

Make your VuePress site a Progressive Web Application (PWA)open in new window.

This plugin uses workbox-buildopen in new window to generate service worker file, and uses register-service-workeropen in new window to register service worker.

Web App Manifests

To make your website fully compliant with PWA, you need to create a Web app manifestsopen in new window file and set the icons, colors, etc. for your PWA.

You need to put your manifest file and icons into the public files directory. In the following example, we assume that you are using the default public directory .vuepress/public.

  1. Create manifest file

Typically .vuepress/public/manifest.webmanifest:

{
  "name": "VuePress",
  "short_name": "VuePress",
  "description": "Vue-powered Static Site Generator",
  "start_url": "/index.html",
  "display": "standalone",
  "background_color": "#fff",
  "theme_color": "#3eaf7c",
  "icons": [
    {
      "src": "/images/icons/android-chrome-192x192.png",
      "sizes": "192x192",
      "type": "image/png"
    },
    {
      "src": "/images/icons/android-chrome-384x384.png",
      "sizes": "384x384",
      "type": "image/png"
    }
  ]
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
  1. Generate PWA icons

To make your PWA more accessible, you need to generate some icons, and put them inside the public directory.

Make sure the path of icons matches the icons field in your manifest file:

  • .vuepress/public/images/icons/android-chrome-192x192.png
  • .vuepress/public/images/icons/android-chrome-384x384.png

TIP

Some tools can help to do that. For example, Favicon Generatoropen in new window would help you to generate icons together with a sample manifest file.

  1. Set tags in head

You also need to set some tags via head option to deploy the manifestopen in new window:

module.exports = {
  head: [
    ['link', { rel: 'manifest', href: '/manifest.webmanifest' }],
    ['meta', { name: 'theme-color', content: '#3eaf7c' }],
    // ...other tags
  ]
}
1
2
3
4
5
6
7

Options

This plugin accepts all parameters of workbox-build's generateSW methodopen in new window in its options, except globDirectory and swDest.

For example, you can set skipWaiting: true to auto activate the new service worker once it is ready:

module.exports = {
  plugins: [
    [
      '@vuepress/pwa',
      {
        skipWaiting: true,
      },
    ],
  ],
}
1
2
3
4
5
6
7
8
9
10

But if you omit skipWaiting or set it to false, you have to activate the new service worker manually:

  • For users, you can use our pwa-popup plugin together.
  • For developers, you can use our composition API to take control of the service worker behavior.

serviceWorkerFilename

  • Type: string

  • Default: 'service-worker.js'

  • Details:

    File path of the generated service worker file, which is relative to the dest directory.

    The service worker file will only be generated in build mode.

Composition API

usePwaEvent

import { usePwaEvent } from '@vuepress/plugin-pwa/lib/client'

export default {
  setup() {
    const event = usePwaEvent()
    event.on('ready', (registration) => {
      console.log('Service worker is active.')
    })
  },
}
1
2
3
4
5
6
7
8
9
10

useSkipWaiting

  • Parameters:
ParameterTypeDescription
registrationServiceWorkerRegistrationThe registration of the service worker you want activate
import {
  usePwaEvent,
  useSkipWaiting,
} from '@vuepress/plugin-pwa/lib/client'

export default {
  setup() {
    const event = usePwaEvent()
    event.on('updated', (registration) => {
      console.log('The waiting service worker is available.')
      // activate the waiting service worker
      useSkipWaiting(registration)
    })
  },
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15