<?php
namespace App\Controller;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Annotation\Route;
class VueController
{
#[Route(path: '/{vueRouting}', name: 'vue_app', requirements: ['vueRouting' => '^(?!api/).*'], defaults: ['vueRouting' => null])]
public function index(): Response
{
$filePath = __DIR__ . '/../../public/index.html';
if (!file_exists($filePath)) {
return new Response('Vue.js application not found.', 404);
}
return new Response(file_get_contents($filePath), 200, [
'Content-Type' => 'text/html',
]);
}
}