Host frontend

This commit is contained in:
T'JAMPENS QUENTIN p2406187
2025-11-21 11:49:03 +01:00
parent 347522a429
commit 83a401bd15
2 changed files with 8 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
<?php
use Illuminate\Support\Facades\Route;
Route::get('/{any}', function () {
return file_get_contents(public_path('index.html'));
})->where('any', '.*');