Configure Shiny App Settings
Usage
configure_shiny(..., type_handlers = list())
Arguments
- ...
Named arguments corresponding to Shiny options. Names will be prefixed with 'shiny.'
- type_handlers
Named list of functions to process specific options. Default handlers
are provided for numeric, logical, and character values.
Value
NULL (invisibly). Sets global options for Shiny.
Examples
if (FALSE) { # \dontrun{
configure_shiny(
host = "0.0.0.0",
port = 3838,
sanitize_errors = TRUE,
autoreload = FALSE
)
} # }