Hello golem developers,
Thank you for making this great package. I have a problem with HTML file. I put a HTML file into inst/intro. When I run the program, the photos in this file will not be loaded. Can you tell me where I should save the image file?
my app_sever code:
app_server <- function(input, output, session) {
# Your application server logic
observeEvent("", {
showModal(modalDialog(
includeHTML(app_sys("intro","intro_text.html")),
easyClose = TRUE
))
})
}
Thank you!