8 lines
168 B
PHP
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', '.*');
|