From 4c6b087042dbc85f7acef01020e364e2ff74fbaf Mon Sep 17 00:00:00 2001 From: Ian Clarke Date: Thu, 20 Apr 2023 19:56:23 -0500 Subject: [PATCH] minor doc fix --- docs/src/faq.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/src/faq.md b/docs/src/faq.md index 3f01fad2d..ff791dabe 100644 --- a/docs/src/faq.md +++ b/docs/src/faq.md @@ -131,12 +131,12 @@ The easiest way is using the [FaviconPlugin](https://github.com/kwebio/kweb-core {{#include ../../src/main/kotlin/kweb/plugins/FaviconPlugin.kt:favicon}} ``` -If you don't provide a FaviconPlugin and KwebConfiguration.handleFavicon is true, Kweb will -automatically use FaviconPlugin.notFound(), which will return a 404 response for any favicon -requests. +If you don't provide a FaviconPlugin of some kind and KwebConfiguration.handleFavicon is true, +Kweb will automatically use FaviconPlugin.notFound(), which will return a 404 response for +any favicon requests. If you need to handle favicon requests yourself, you can set KwebConfiguration.handleFavicon -to false and add your own handler for favicon requests. +to false. ## How do I enable auto-reloading?