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
add or modify the pwa.iconPaths section in vue.config.js, specify some paths other than the default ones.
$ vue-cli-service build
look at the generated index.html, the meta tags of the icons is still the default path.
What is expected?
meta tags should be using the iconPaths
What is actually happening?
meta tags are still default
The config is being mutated, during the webpack config chain. However, it appears that the chain is being executed multiple times, and thus the config value is dropped in the subsequence calls.
Version
5.0.0-alpha.2
Environment info
Steps to reproduce
pwa.iconPaths
section invue.config.js
, specify some paths other than the default ones.What is expected?
meta tags should be using the iconPaths
What is actually happening?
meta tags are still default
The config is being mutated, during the webpack config chain. However, it appears that the chain is being executed multiple times, and thus the config value is dropped in the subsequence calls.
vue-cli/packages/@vue/cli-plugin-pwa/lib/HtmlPwaPlugin.js
Line 58 in 637414c
related issues: #4069 (is closed, but actually the problem is not yet solved)
The text was updated successfully, but these errors were encountered: