From e8d3a3c3f602a6bfc894c8fd36d99830cebe04ff Mon Sep 17 00:00:00 2001 From: ky-is Date: Wed, 25 Apr 2018 11:38:10 -0700 Subject: [PATCH] docs(pwa): Document themeColor and msTileColor (#954) --- packages/@vue/cli-plugin-pwa/README.md | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) 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