diff --git a/packages/@vue/cli-plugin-pwa/README.md b/packages/@vue/cli-plugin-pwa/README.md index c237e54be..4f21db207 100644 --- a/packages/@vue/cli-plugin-pwa/README.md +++ b/packages/@vue/cli-plugin-pwa/README.md @@ -36,14 +36,17 @@ file, or the `"vue"` field in `package.json`. module.exports = { // ...other vue-cli plugin options... pwa: { + name: 'My App', // used for apple-mobile-web-app-title + themeColor: '#4DBA87', + msTileColor: '#000000', workboxPluginMode: 'InjectManifest', workboxOptions: { // swSrc is required in InjectManifest mode. swSrc: 'dev/sw.js', // ...other Workbox options... - }, - }, -}; + } + } +} ``` ## Installing in an Already Created Project