I am developing a shiny application using golem
as framework. I noticed that when I run the application, the browser page tab shows the name of the package defined in '01_start.R
' (e.g. pkg_name = "golem.test").
I have tried to include this code in the ui but it doesn't work:
app_ui <- function(request) {
# ...
tags$head(tags$title("My New Title"))
# ...
}
But it doesn't work. It still shows "golem.test".
How and where can I change the title of the application so that it is displayed correctly in the tab?.
Thank you very much.
Wardiam