src/Controller/VueController.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Controller;
  3. use Symfony\Component\HttpFoundation\Response;
  4. use Symfony\Component\Routing\Annotation\Route;
  5. class VueController
  6. {
  7.     #[Route(path'/{vueRouting}'name'vue_app'requirements: ['vueRouting' => '^(?!api/).*'], defaults: ['vueRouting' => null])]
  8.     public function index(): Response
  9.     {
  10.         $filePath __DIR__ '/../../public/index.html';
  11.         if (!file_exists($filePath)) {
  12.             return new Response('Vue.js application not found.'404);
  13.         }
  14.         return new Response(file_get_contents($filePath), 200, [
  15.             'Content-Type' => 'text/html',
  16.         ]);
  17.     }
  18. }