docs(pwa): Document themeColor and msTileColor (#954)

This commit is contained in:
ky-is
2018-04-25 11:38:10 -07:00
committed by Evan You
parent fe0c569e5a
commit e8d3a3c3f6

View File

@@ -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