src/Controller/IndexController.php line 14
<?phpnamespace App\Controller;use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;use Symfony\Component\HttpFoundation\JsonResponse;use Symfony\Component\HttpFoundation\Response;use Symfony\Component\Routing\Annotation\Route;class IndexController extends AbstractController{#[Route('/', name: 'root')]#[Route('/{route}', name: 'vue_pages', requirements: ['route' => '^(?!.*api|reset-password).+'], methods: 'GET')]public function index(string $route = null): Response{return $this->render('index.html.twig', ['base_dir' => realpath($this->getParameter('kernel.project_dir')).DIRECTORY_SEPARATOR,]);}}