Description Usage Arguments Value See Also Examples
The content type of the response is set automatically from the extension of the file. Note that this is a terminal middleware handler function. If a file is served, then the rest of the handler functions will not be called. If a file was not found, however, the rest of the handlers are still called.
1 |
root |
Root path of the served files. Everything under this directory is served automatically. Directory lists are not currently supports. |
set_headers |
Callback function to call before a file is served. |
Handler function.
Other middleware:
mw_etag()
,
mw_json()
,
mw_log()
,
mw_multipart()
,
mw_raw()
,
mw_text()
,
mw_urlencoded()
1 2 3 4 | root <- system.file(package = "presser", "examples", "static", "public")
app <- new_app()
app$use(mw_static(root = root))
app
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.