2021-08-13 13:17:59 +02:00

11 lines
292 B
PHP

<?php
Route::get('/app/{path?}', function () {
if (file_exists(__DIR__ . '/assets/index.html')) {
$file = file_get_contents(__DIR__ . '/assets/index.html');
return $file;
} else {
App::abort(404, 'Could not find index.html. Is react compiled?');
}
})->where('path', '.*');