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
{{ message }}
This repository has been archived by the owner on Dec 20, 2018. It is now read-only.
Is there a way to define the theme_color in the manifest only? I'm setting the theme_color meta element programmatically through ember-cli-head depending on my backgrounds and don't want a duplicate meta element in my head.
The text was updated successfully, but these errors were encountered:
There's no way to disable the generation of the theme_color meta at the moment. Sorry about that.
Is there a possibility that you use the theme_color generated by ember-web-app and update it when the ember app boots? Instead of using ember-cli-head.
I guess we could offer a blacklist mechanism on this addon to avoid generating unwanted meta tags, maybe through ember-cli-build.js config flag...
I thought of updating it manually, but that would require DOM manipulation which is not available in FastBoot. Would definitely be nice to blacklist unwanted meta tags.
Maybe have an override for each target?
module.exports=function(){return{name: "Theme color manifest",theme_color: "#ffa105",apple: {statusBarStyle: 'black-translucent'},html: {// or `meta`theme_color: null}}}
Is there a way to define the
theme_color
in the manifest only? I'm setting thetheme_color
meta element programmatically throughember-cli-head
depending on my backgrounds and don't want a duplicate meta element in my head.The text was updated successfully, but these errors were encountered: