From 5f4aa730b12f4a250dd1e2247ac5c0e71195f5d2 Mon Sep 17 00:00:00 2001 From: Dendy Faist Date: Mon, 14 Apr 2025 02:52:05 +0200 Subject: [PATCH] feat: Make the index be a hidden file --- src/Controller/MainController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Controller/MainController.php b/src/Controller/MainController.php index f3281d9..fe2dc79 100644 --- a/src/Controller/MainController.php +++ b/src/Controller/MainController.php @@ -15,7 +15,7 @@ final class MainController extends AbstractController #[Route('/', 'app_root')] public function root(): Response { - return $this->index('index.md'); + return $this->index('.index'); } #[Route('/sync', 'app_sync')]