You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
or for [`InjectManifest`](https://developers.google.com/web/tools/workbox/modules/workbox-webpack-plugin#full_injectmanifest_config).
31
31
32
+
-**pwa.name**
33
+
34
+
- Default: "name" field in `package.json`
35
+
36
+
Used as the value for the `apple-mobile-web-app-title` meta tag in the generated HTML. Note you will need to edit `public/manifest.json` to match this.
37
+
38
+
-**pwa.themeColor**
39
+
40
+
- Default: `'#4DBA87'`
41
+
42
+
-**pwa.msTileColor**
43
+
44
+
- Default: `'#000000'`
45
+
46
+
-**pwa.appleMobileWebAppCapable**
47
+
48
+
- Default: `'no'`
49
+
50
+
This defaults to `'no'` because iOS before 11.3 does not have proper PWA support. See [this article](https://medium.com/@firt/dont-use-ios-web-app-meta-tag-irresponsibly-in-your-progressive-web-apps-85d70f4438cb) for more details.
51
+
52
+
-**pwa.appleMobileWebAppStatusBarStyle**
53
+
54
+
- Default: `'default'`
55
+
32
56
### Example Configuration
33
57
34
58
```js
35
59
// Inside vue.config.js
36
60
module.exports= {
37
61
// ...other vue-cli plugin options...
38
62
pwa: {
39
-
name:'My App',// used for apple-mobile-web-app-title
0 commit comments