UNPKG

316 BMarkdownView Raw
1# PWA plugin
2
3The PWA built-in plugin will normally include `registerServiceWorker.js` in `src/main` like this:
4
5```js
6import './registerServiceWorker';
7```
8
9But this is not compatible with SSR, so you need to include it only on client side :
10
11```js
12if (process.client) {
13 require('./registerServiceWorker');
14}
15```