I am trying to display a picture on a shiny app, but there is issues whith source
I have my app.r in a folder and a logo.png inside a WWW folder next to my app
My code is
library(shiny)
ui <- fluidPage(
tags$img(src="logo.png")
)
server<-function(input,output,session){}
shinyApp(ui = ui, server = server)
But it can t find the logo. Same issue when I try to link a css file. Is there a configuration to do? thanks