diff --git a/config/favicon.png b/embed/favicon.png similarity index 100% rename from config/favicon.png rename to embed/favicon.png diff --git a/config/favicon.svg b/embed/favicon.svg similarity index 100% rename from config/favicon.svg rename to embed/favicon.svg diff --git a/config/robots.txt b/embed/robots.txt similarity index 100% rename from config/robots.txt rename to embed/robots.txt diff --git a/src/Vervis/Handler/Common.hs b/src/Vervis/Handler/Common.hs index 23074fc..72ca32b 100644 --- a/src/Vervis/Handler/Common.hs +++ b/src/Vervis/Handler/Common.hs @@ -33,16 +33,16 @@ getFaviconSvgR :: Handler TypedContent getFaviconSvgR = return $ TypedContent "image/svg+xml" $ - toContent $(embedFile "config/favicon.svg") + toContent $(embedFile "embed/favicon.svg") getFaviconPngR :: Handler TypedContent getFaviconPngR = return $ TypedContent "image/png" $ - toContent $(embedFile "config/favicon.png") + toContent $(embedFile "embed/favicon.png") getRobotsR :: Handler TypedContent getRobotsR = return $ TypedContent typePlain $ - toContent $(embedFile "config/robots.txt") + toContent $(embedFile "embed/robots.txt")