feat: Make the index be a hidden file

This commit is contained in:
Dendy 2025-04-14 02:52:05 +02:00
parent 6adcf4bd55
commit 5f4aa730b1
1 changed files with 1 additions and 1 deletions

View File

@ -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')]