2025-09-24 22:13:50 +03:00

8 lines
168 B
PHP

<?php
use Illuminate\Support\Facades\Route;
Route::get('/{any}', function () {
return file_get_contents(public_path('build/index.html'));
})->where('any', '.*');