3.0.0-beta.6
https://github.com/wahidrahim/vue-theme_color-bug
manifest.json
to "#FF0000" for exampleusing vue-cli 3.0.0-beta.9
<meta name="theme-color" content="#4DBA87">
should change to
<meta name="theme-color" content="#FF0000">
<meta name="theme-color" content="#4DBA87">
remains the same
If you add <meta name="theme-color" content="#008996">
to the public/index.html
then the change takes place.
However, looking at the source in the browser, the injected meta tags are still there: <meta name="theme-color" content="#4DBA87">
and others.
Where are these coming from, and how do you change it?
There is a thread in the forums about this as well: https://forum.vuejs.org/t/vue-cli-3-where-i-change-theme-color-for-address-bar/29951/6
Please read the Readme of the pwa plugin.
Here is the readme with the config that can be set for the pwa plugin.
I am not an expert and did not know where to put the vue.config.js
file. If someone has the same doubt, it more easy than it seems, just put it at the top level of you app structure (at the same level of your package.json
file) hope to save some time to other "noobs" like me :sweat_smile:
And what if you want your pwa theme color to be choosable by users?
Most helpful comment
Here is the readme with the config that can be set for the pwa plugin.
I am not an expert and did not know where to put the
vue.config.js
file. If someone has the same doubt, it more easy than it seems, just put it at the top level of you app structure (at the same level of yourpackage.json
file) hope to save some time to other "noobs" like me :sweat_smile: