I have code in many of my apps to load CSS files. I usually put them inside a `www/` directory and use
tags$head(tags$link(href = "style.css", rel = "stylesheet"))
I wanted to switch to using the `includeCSS()` function instead, but I noticed that it assumes the CSS file lives in the main app directory rather than inside `www/`. Other resources such as images are also by default assumed to be under `www/` (I'm guessing this was done using `addResourcePath()?`), so I was just wondering if there was a reason this function doesn't make that same assumption?