12 lines
344 B
PHP
12 lines
344 B
PHP
<?php
|
|
|
|
use Illuminate\Support\Facades\Route;
|
|
|
|
Route::get('/{any}', function () {
|
|
$path = public_path('build/index.html');
|
|
if (!file_exists($path)) {
|
|
return response('Frontend build not found. Please run "npm run build" in the thanasoft-front directory.', 404);
|
|
}
|
|
return file_get_contents($path);
|
|
})->where('any', '.*');
|