I have a logo I would like to display on the top right corner of my app and when I launch the app locally it displays properly.
However, when I try to deploy the app, everything works fine except that my logo is just a question mark and the title. The .png file is located in the www folder in the working directory.
This is a snippet of the code:
header <- dashboardHeader(title="XXX",
tags$li(a(href = 'https://www.google.com',
img(src = 'Google_logo.png', title = "Google Home", height = "30px"),
style = "padding-top:10px; padding-bottom:10px"),
class = "dropdown")
)
Any help on this one is much appreciated.
Thanks