-
Hi, I'm running my application as a docker container, mostly for some docker compose convenience with other apps. To give the app a more custom style I would like to change the title and maybe the page icon (also to make it easier to distinguish different apps from another). I know that I can just edit the First I thought I'll just overwrite the So my solution now is a bit awkward since I just use I'm not sure if there are better solutions for this. If possible, it would be nice if stuff like this could be customized via an environment variable (title, description, icon). |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Sure, all you need is a https://wave.h2o.ai/docs/examples/meta-title/ The icon should work on all browsers except Safari which doesn't support dynamic icons for some reason. The only workaround for this is to change the index.html as you described above. |
Beta Was this translation helpful? Give feedback.
Sure, all you need is a
meta_card
that allows you to set both title and icon:https://wave.h2o.ai/docs/examples/meta-title/
https://wave.h2o.ai/docs/examples/meta-icon/
The icon should work on all browsers except Safari which doesn't support dynamic icons for some reason. The only workaround for this is to change the index.html as you described above.