Thought I’d share
The definitions of the title and the favicons are located in the file: /usr/share/kibana/src/core/server/rendering/views/template.js.
There you have the following line for Title definition (Elastic):
/#PURE/_react.default.createElement(“title”, null, “Elastic”), /#PURE/_react.default.createElement(_fonts.Fonts, {
url: uiPublicUrl
}
=============
The favicon files located in this folder:/usr/share/kibana/src/core/server/core_app/assets/favicons
Then, below in that file, you have the favicons paths definition:
/#PURE/_react.default.createElement(“link”, {
rel: “icon”,
type: “image/png”,
sizes: “32x32”,
href: ${uiPublicUrl}/favicons/favicon-32x32.png
}), /#PURE/_react.default.createElement(“link”, {
rel: “icon”,
type: “image/png”,
sizes: “16x16”,
href: ${uiPublicUrl}/favicons/favicon-16x16.png
}),
…
/*#__PURE__*/_react.default.createElement("link", {
rel: "shortcut icon",
href: `${uiPublicUrl}/favicons/favicon.ico`
})