You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was publishing my package and I used usethis::use_logo() and pkgdown::build_favicons() but it appears the API you all use returns a favicon-96x96.png but not 16 and 32 which for me are the ones refrenced in the HTML thats generated in docs.
My work around was cloning the 96x96 to those other two files but a better fix may be rendering the proper 96 file in the HTML (which I dont know how to do).
# while in the gh-pages branch I just ran this for my fix
file.copy(from = "favicon-96x96.png", to = "favicon-16x16.png")
file.copy(from = "favicon-96x96.png", to = "favicon-32x32.png")
The text was updated successfully, but these errors were encountered:
I was publishing my package and I used usethis::use_logo() and pkgdown::build_favicons() but it appears the API you all use returns a favicon-96x96.png but not 16 and 32 which for me are the ones refrenced in the HTML thats generated in docs.
My work around was cloning the 96x96 to those other two files but a better fix may be rendering the proper 96 file in the HTML (which I dont know how to do).
The text was updated successfully, but these errors were encountered: