https://deploy-preview-4028--bootstrap-vue.netlify.com/
Inspect <head> element and see that there is no favicon. Inpsect manifest to see that icons is an empty array.
Faviocon is generated, manifest populated with icons array
no icons (although Icon files are generated in the /icons directory)
/cc @pi0
Were were using the defaults (default icon file and location, etc), and see the icon files being generated.
Added in new pwa: { icon: { ... } } icon entry into nuxt.config.js, but see the same results.
Hi,
after digging into the source code if found a little workaround for that:
manifest: {
icons: [],
},
pwa: {
icon: {
iconFileName: 'android-chrome-512x512.png',
sizes: [36, 48, 72, 96, 144, 192, 256, 384, 512],
},
manifest: {
name: 'Foo',
short_name: 'Foo',
},
},
I've verified that @preventdefault's workaround works
Fixed by v3.0.0-beta.18
Most helpful comment
Fixed by v3.0.0-beta.18