Reputation:
I am trying to deploy my Shiny app to shinyapps.io. This app works fine locally, and also the deployment process seems to go well:
However, when I access the website online, I get an error message:
An error has occurred. Check your logs or contact the app author for clarification.
Here are my logs:
Is this a matter of shinyapps.io not being able to run the gifski package?
Upvotes: 0
Views: 410
Reputation:
For those encountering this issue, I got it fixed by including library(gifski)
& library(png)
in my code. Huge thanks to Josh who helped out here
Upvotes: 3