diff --git a/vignettes/faq.Rmd b/vignettes/faq.Rmd
index 1190b423..3f181297 100644
--- a/vignettes/faq.Rmd
+++ b/vignettes/faq.Rmd
@@ -19,6 +19,15 @@ You can run a Rhino application exactly the same as a regular Shiny app:
+
+How to automatically reload the application during development?
+
+Call `options(shiny.autoreload = TRUE)` in your R session.
+Shiny will monitor the app directory and reload all connected sessions if any changes are detected.
+More details can be found in [Shiny reference](https://shiny.posit.co/r/reference/shiny/latest/shinyoptions).
+
+
+
How to use a specific port when running a Rhino application?