0

I am trying to add a favicon to my shiny app when it is opened in a browser, but I couldn't find a way to do that on a one-page shiny.

Here is an example of my code:

ui <- navbarPage(title = "title",
                 selected = "home",
                 theme = shinytheme("readable"),
                 fluid = TRUE,
                 home)



server <- function(input, output) {}

# Run the application
shinyApp(ui = ui, server = server)

How can I add a favicon when my app is written like this? All of the solutions I saw are for apps with multiple files, ui.R and server.R.

0 Answers0