Compare commits

...

1 Commits

Author SHA1 Message Date
Winston Chang
cac77bcbb3 Add fallthrough for shared/ subdirectory 2019-04-19 10:26:02 -05:00

View File

@@ -454,7 +454,10 @@ startApp <- function(appObj, port, host, quiet) {
list(
# Always handle /session URLs dynamically, even if / is a static path.
"session" = excludeStaticPath(),
"shared" = system.file(package = "shiny", "www", "shared")
"shared" = staticPath(
system.file(package = "shiny", "www", "shared"),
fallthrough = TRUE
)
),
.globals$resourcePaths
)