Update the app's resourcePath
and add bundled, static assets, making
them available to the app's interface for downstream use.
Details
This function is used to add the app's favicon, bundle the app's assets,
add various <meta>
tags, and include necessary external libraries and
shiny related packages to the app.
By default it will perform the following actions:
Update the app's
resourcePath
to include this package'sassets/
directory viashiny::addResourcePath()
.Add the favicon to the app's
<head>
viaapp_favicon()
.Bundle and include app static assets as an
htmltools::htmlDependency()
viabundle_app_assets()
.
plus, it will include the following packages:
Include
shinyjs
viashinyjs::useShinyjs()
.Include
shinyFeedback
viashinyFeedback::useShinyFeedback()
.Include
waiter
viawaiter::useWaiter()
.
See also
app_favicon()
, bundle_app_assets()
, shiny::addResourcePath()
,
shinyjs::useShinyjs()
, shinyFeedback::useShinyFeedback()
, waiter::useWaiter()