nuxt-community / pwa-module

Zero config PWA solution for Nuxt.js
https://pwa.nuxtjs.org
MIT License
1.23k stars 171 forks source link

Using meta: false causing manifest is not generating #432

Open Herbata-Sys opened 3 years ago

Herbata-Sys commented 3 years ago

Version: 3.3.5 I don't want pwa module to override my default website title and meta tags so I am setting manifest property to false but then manifest.json file is not generating on build. Also i think another bug is that if manifest is not set to false it's title overrides nuxt.js title template.

vervelover commented 2 years ago

I found a solution for this, you need to set this meta tag, otherwise it will use the one set in your manifest which is not translated:

{ hid: "apple-mobile-web-app-title", property: "apple-mobile-web-app-title", content: your-meta-title-here }

I think that sometimes nuxt.js documentation is really lacking, which is a pity because everything else is great