<?phpnamespace App\Controller;use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;use Symfony\Component\Routing\Annotation\Route;class ClientController extends AbstractController{ /** * @Route("/", name="home", priority="-100") * @Route("/{route}", requirements={"route": "^.+"}, priority="-100") */ function home() { return $this->render('spa.html.twig'); }}