I am trying to add a logo in the browser.
library(shinydashboard)
ui <- dashboardPage(title = "test me",
dashboardHeader(),
dashboardSidebar(),
dashboardBody())
server <- function(input, output) { }
shinyApp(ui, server)
If you run the above code you and open the app in your browser you will see the test me show up in the title of the browser. I would like to add a logo to the title as well. Right now you will see a "globe" but instead i would like to see my company logo next to test me. I see a solution that works in shiny but the same does not work for shinydashboard page. Thanks for your help.