I've been working on a Shiny app, where I put together the UI code using HTML, CSS, and JavaScript within the www sub-folder, while keeping the app.R file in the main folder.
The code in my app is structured as follows:
runApp(
shinyApp(
ui = shinyUI(
htmlTemplate("www/index.html")
),
server = shinyServer(function(input, output) {
})
))
However, I've encountered an issue where the app is adding CSS and JavaScript files when I try to run it.
I would appreciate any assistance in resolving this problem. Thank you.